python properties and inheritance - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T23:12:17Zhttp://stackoverflow.com/feeds/question/237432http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/237432/python-properties-and-inheritance6python properties and inheritancePeter Hoffmann2008-10-26T02:49:09Z2008-11-14T22:52:52Z
<p>I have a base class with a property which (the get method) I want to overwrite in the subclass. My first thought was something like:</p>
<pre><code>class Foo(object):
def _get_age(self):
return 11
age = property(_get_age)
class Bar(Foo):
def _get_age(self):
return 44
</code></pre>
<p>This does not work (subclass bar.age returns 11). I found a solution with an lambda expression which works:</p>
<pre><code>age = property(lambda self: self._get_age())
</code></pre>
<p>So is this the right solution for using properties and overwrite them in a subclass, or are there other preferred ways to do this?</p>
http://stackoverflow.com/questions/237432/python-properties-and-inheritance/237445#2374452Answer by Federico Ramponi for python properties and inheritanceFederico Ramponi2008-10-26T03:01:04Z2008-10-26T03:11:56Z<p>I agree with your solution, which seems an on-the-fly template method.
<a href="http://www.artima.com/forums/flat.jsp?forum=122&thread=153649" rel="nofollow">This article</a> deals with your problem and provides exactly your solution.</p>
http://stackoverflow.com/questions/237432/python-properties-and-inheritance/237447#2374472Answer by James Bennett for python properties and inheritanceJames Bennett2008-10-26T03:07:11Z2008-10-26T03:07:11Z<p>Yes, this is the way to do it; the property declaration executes at the time the parent class' definition is executed, which means it can only "see" the versions of the methods which exist on the parent class. So when you redefine one or more of those methods on a child class, you need to re-declare the property using the child class' version of the method(s).</p>
http://stackoverflow.com/questions/237432/python-properties-and-inheritance/237461#2374612Answer by Kozyarchuk for python properties and inheritanceKozyarchuk2008-10-26T03:17:07Z2008-10-26T03:17:07Z<p>Something like this will work</p>
<pre><code>class HackedProperty(object):
def __init__(self, f):
self.f = f
def __get__(self, inst, owner):
return getattr(inst, self.f.__name__)()
class Foo(object):
def _get_age(self):
return 11
age = HackedProperty(_get_age)
class Bar(Foo):
def _get_age(self):
return 44
print Bar().age
print Foo().age
</code></pre>
http://stackoverflow.com/questions/237432/python-properties-and-inheritance/237858#23785811Answer by piro for python properties and inheritancepiro2008-10-26T10:50:15Z2008-10-26T13:13:31Z<p>I simply prefer to repeat the <code>property()</code> as well as you will repeat the <code>@classmethod</code> decorator when overriding a class method. </p>
<p>While this seems very verbose, at least for Python standards, you may notice:</p>
<p>1) for read only properties, <code>property</code> can be used as a decorator:</p>
<pre><code>class Foo(object):
@property
def age(self):
return 11
class Bar(Foo):
@property
def age(self):
return 44
</code></pre>
<p>2) in Python 2.6, <a href="http://docs.python.org/library/functions.html#property" rel="nofollow">properties grew a pair of methods</a> <code>setter</code> and <code>deleter</code> which can be used to apply to general properties the shortcut already available for read-only ones:</p>
<pre><code>class C(object):
@property
def x(self):
return self._x
@x.setter
def x(self, value):
self._x = value
</code></pre>
<p>It is very easy to create similar decorators to be used with previous Python version:</p>
<pre><code>class setter(object):
def __init__(self, prop):
self.prop = prop
def __call__(self, setter):
return property(
fget=self.prop.fget,
fset=setter,
fdel=self.prop.fdel,
doc=self.prop.__doc__)
class C(object):
def __init__(self):
self._age = None
@property
def age(self):
"""My age"""
return self._age
@setter(age)
def age(self, n):
self._age = n
</code></pre>
http://stackoverflow.com/questions/237432/python-properties-and-inheritance/291707#2917071Answer by Kamil Kisiel for python properties and inheritanceKamil Kisiel2008-11-14T22:52:52Z2008-11-14T22:52:52Z<p>Another way to do it, without having to create any additional classes. I've added a set method to show what you do if you only override one of the two:</p>
<pre><code>class Foo(object):
def _get_age(self):
return 11
def _set_age(self, age):
self._age = age
age = property(_get_age, _set_age)
class Bar(Foo):
def _get_age(self):
return 44
age = property(_get_age, Foo._set_age)
</code></pre>
<p>This is a pretty contrived example, but you should get the idea.</p>