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.
