Inheriting from instance in Python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:21:20Z http://stackoverflow.com/feeds/question/1081253 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081253/inheriting-from-instance-in-python 3 Inheriting from instance in Python Alexandra 2009-07-04T01:02:45Z 2009-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])) == "&lt;class '__main__.Parent'&gt;": 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 &lt;module&gt; 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/1081271#1081271 3 Answer by Alex Martelli for Inheriting from instance in Python Alex Martelli 2009-07-04T01:11:01Z 2009-07-04T01:16:53Z <p>Once <code>__new__</code> in class <code>Child</code> returns an instance of <code>Child</code>, <code>Child.__init__</code> will be called (with the same arguments <code>__new__</code> was given) on that instance -- and apparently it just inherits <code>Parent.__init__</code>, which does not take well to being called with just one arg (the other <code>Parent</code>, <code>A</code>).</p> <p>If there is no other way a <code>Child</code> can be made, you can define a <code>Child.__init__</code> that accepts either one arg (which it ignores) or three (in which case it calls <code>Parent.__init__</code>). But it's simpler to forego <code>__new__</code> and have all the logic in <code>Child.__init__</code>, just calling the <code>Parent.__init__</code> appropriately!</p> <p>To make this concrete with a code example:</p> <pre><code>class Parent(object): def __init__(self, x, y, z): print "INITIALIZING PARENT" self.x = x self.y = y self.z = z def __str__(self): return "%s(%r, %r, %r)" % (self.__class__.__name__, self.x, self.y, self.z) class Child(Parent): _sentinel = object() def __init__(self, x, y=_sentinel, z=_sentinel): print "INITIALIZING CHILD" if y is self._sentinel and z is self._sentinel: print "HIJACKING" z = x.z; y = x.y; x = x.x Parent.__init__(self, x, y, z) print "CHILD IS DONE!" p0 = Parent(1, 2, 3) print p0 c1 = Child(p0) print c1 c2 = Child(4, 5, 6) print c2 </code></pre> http://stackoverflow.com/questions/1081253/inheriting-from-instance-in-python/1081279#1081279 1 Answer by abhinavg for Inheriting from instance in Python abhinavg 2009-07-04T01:18:14Z 2009-07-04T01:18:14Z <p>Here is a rough of what you could do</p> <pre><code>class Parent(object): def __init__( self, x, y, z ): print "INITIALIZING PARENT" self.x = x self.y = y self.z = z class Child(Parent): def __init__( self, *args ): if len( args ) == 1 and isinstance( args[0], Parent ): print "CHILD FROM PARENT" parent = args[0] args = [ parent.x, parent.y, parent.z ] super( Child, self ).__init__( *args ) A = Parent( 1,2,3 ) B = Child(A) </code></pre> <p>Or consider using the <a href="http://docs.python.org/library/copy.html" rel="nofollow">copy</a> module in Child's <code>__init__</code></p> http://stackoverflow.com/questions/1081253/inheriting-from-instance-in-python/1081280#1081280 1 Answer by ars for Inheriting from instance in Python ars 2009-07-04T01:18:16Z 2009-07-04T01:18:16Z <p>You don't define a constructor (init) for Child, so the Parent constructor is called, expecting 4 arguments while only 2 are passed in (from new). Here's one way to accomplish what you want:</p> <pre><code>class Child(Parent): def __init__(self, *args, **kwargs): if len(args) == 1 and isinstance(args[0], Parent): Parent.__init__(self, args[0].x, args[0].y, args[0].z) else: # do something else </code></pre> http://stackoverflow.com/questions/1081253/inheriting-from-instance-in-python/1081295#1081295 0 Answer by Alexandra for Inheriting from instance in Python Alexandra 2009-07-04T01:37:25Z 2009-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])) == "&lt;class '__main__.Parent'&gt;": 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> http://stackoverflow.com/questions/1081253/inheriting-from-instance-in-python/1081925#1081925 0 Answer by Lennart Regebro for Inheriting from instance in Python Lennart Regebro 2009-07-04T10:12:09Z 2009-07-04T10:12:09Z <p>OK, so I didn't realize that you where happy with a static copy of the arguments until I was already halfway done with my solution. But I decided not to waste it, so here it is anyway. The difference from the other solutions is that it will actually get the attributes from the parent even if they updated.</p> <pre><code>_marker = object() class Parent(object): def __init__(self, x, y, z): self.x = x self.y = y self.z = z class Child(Parent): _inherited = ['x', 'y', 'z'] def __init__(self, parent): self._parent = parent self.a = "not got from dad" def __getattr__(self, name, default=_marker): if name in self._inherited: # Get it from papa: try: return getattr(self._parent, name) except AttributeError: if default is _marker: raise return default if name not in self.__dict__: raise AttributeError(name) return self.__dict__[name] </code></pre> <p>Now if we do this:</p> <pre><code>&gt;&gt;&gt; A = Parent('gotten', 'from', 'dad') &gt;&gt;&gt; B = Child(A) &gt;&gt;&gt; print "a, b and c is", B.x, B.y, B.z a, b and c is gotten from dad &gt;&gt;&gt; print "But x is", B.a But x is not got from dad &gt;&gt;&gt; A.x = "updated!" &gt;&gt;&gt; print "And the child also gets", B.x And the child also gets updated! &gt;&gt;&gt; print B.doesnotexist Traceback (most recent call last): File "acq.py", line 44, in &lt;module&gt; print B.doesnotexist File "acq.py", line 32, in __getattr__ raise AttributeError(name) AttributeError: doesnotexist </code></pre> <p>For a more generic version of this, look at the <a href="http://pypi.python.org/pypi/Acquisition" rel="nofollow">http://pypi.python.org/pypi/Acquisition</a> package. It is in fact, in some cases a bloody need solution.</p>