#!/usr/local/bin/python2 class C(object): def __init__(self): self._f = min def __call__(self): print 1234 @property def f(self): return self._f print C().f