User Alexandra - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T06:24:57Zhttp://stackoverflow.com/feeds/user/133006http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081253/inheriting-from-instance-in-python3Inheriting from instance in PythonAlexandra2009-07-04T01:02:45Z2009-07-04T10:12:09Z
<p>Hello, </p>
<p>In Python, I would like to construct an instance of the Child's class directly from an instance of the Parent class. For example:</p>
<pre><code>A = Parent(x, y, z)
B = Child(A)
</code></pre>
<p>This is a hack that I thought might work:</p>
<pre><code>class Parent(object):
def __init__(self, x, y, z):
print "INITILIZING PARENT"
self.x = x
self.y = y
self.z = z
class Child(Parent):
def __new__(cls, *args, **kwds):
print "NEW'ING CHILD"
if len(args) == 1 and str(type(args[0])) == "<class '__main__.Parent'>":
new_args = []
new_args.extend([args[0].x, args[0].y, args[0].z])
print "HIJACKING"
return Child(*new_args)
print "RETURNING FROM NEW IN CHILD"
return object.__new__(cls, *args, **kwds)
</code></pre>
<p>But when I run </p>
<pre><code>B = Child(A)
</code></pre>
<p>I get:</p>
<pre><code>NEW'ING CHILD
HIJACKING
NEW'ING CHILD
RETURNING FROM NEW IN CHILD
INITILIZING PARENT
Traceback (most recent call last):
File "classes.py", line 52, in <module>
B = Child(A)
TypeError: __init__() takes exactly 4 arguments (2 given)
</code></pre>
<p>It seems the hack works just as I expected but the compiler throws a TypeError at the end. I was wondering if I could overload TypeError to make it ignore the B = Child(A) idiom but I wasn't sure how to do that. In any case, would you please give me your solutions for inheriting from instances?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1081253/inheriting-from-instance-in-python/1081295#10812950Answer by Alexandra for Inheriting from instance in PythonAlexandra2009-07-04T01:37:25Z2009-07-04T03:38:06Z<p>Thanks, guys, that was quick! I first read Alex's comment and I rewrote the Child's <code>__init__</code> as</p>
<pre><code>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)
</code></pre>
<p>which is very similar to what abhinavg suggested (as I just found out). And it works. Only his and ars' line</p>
<pre><code>if len(args) == 1 and isinstance(args[0], Parent):
</code></pre>
<p>is cleaner than mine.</p>
<p>Thanks again!!</p>