class C(object): def _get(self): """Docstring.""" return 42 attr = property(fget=_get) C().attr = 42