3
votes
5answers
206 views
Inheriting from instance in Python
Hello,
In Python, I would like to construct an instance of the Child's class directly from an instance of the Parent class. For example:
A = Parent(x, y, z)
B = Child(A)
…
0
votes
Inheriting from instance in Python
Thanks, guys, that was quick! I first read Alex's comment and I rewrote the Child's __init__ as
def __init__(self, *args, **kwds):
if len(args) == 1 and str(type(ar …
