show/hide this revision's text 3 deleted 215 characters in body

I agree with your solution, which seems an on-the-fly template method. Of course another way to accomplish the same would be:

class Foo(object):
    ...
    def _get_age_template(self): return self._get_age()
    age = property(_get_age_template)

EDIT: this This article deals with your problem and provides exactly your solution.

show/hide this revision's text 2 added 182 characters in body

I agree with your solution, which seems an on-the-fly template method. Of course another way to accomplish the same would be:

class Foo(object):
    def _get_age(self):
        return 11

    ...
    def _get_age_template(self): return self._get_age()
    age = property(_get_age_template)
class Bar(Foo)

EDIT: def _get_age(self): return 44 this article deals with your problem and provides exactly your solution.

show/hide this revision's text 1

I agree with your solution, which seems an on-the-fly template method. Of course another way to accomplish the same would be:

class Foo(object):
    def _get_age(self):
        return 11

    def _get_age_template(self): return self._get_age()
    age = property(_get_age_template)

class Bar(Foo):
    def _get_age(self):
        return 44