show/hide this revision's text 2 Fixing __init__ markup.

Thanks, guys, that was quick! I first read Alex's comment and I rewrote the Child's init__init__ as

def __init__(self, *args, **kwds):
    if len(args) == 1 and str(type(args[0])) == "<class '__main__.Parent'>":
        new_args = [args[0].x, args[0].y, args[0].z]
        super(Child, self).__init__(*new_args, **kwds)
    else:
        super(Child, self).__init__(*args, **kwds)

which is very similar to what abhinavg suggested (as I just found out). And it works. Only his and ars' line

if len(args) == 1 and isinstance(args[0], Parent):

is cleaner than mine.

Thanks again!!

show/hide this revision's text 1

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(args[0])) == "<class '__main__.Parent'>":
        new_args = [args[0].x, args[0].y, args[0].z]
        super(Child, self).__init__(*new_args, **kwds)
    else:
        super(Child, self).__init__(*args, **kwds)

which is very similar to what abhinavg suggested (as I just found out). And it works. Only his and ars' line

if len(args) == 1 and isinstance(args[0], Parent):

is cleaner than mine.

Thanks again!!