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