Here is the code:
def Property(func):
return property(**func())
class A:
def __init__(self, name):
self._name = name
@Property
def name():
doc = 'A''s name'
def fget(self):
return self._name
def fset(self, val):
self._name = val
fdel = None
print locals()
return locals()
a = A('John')
print a.name
print a._name
a.name = 'Bob'
print a.name
print a._name
Above produces the following output:
{'doc': 'As name', 'fset': <function fset at 0x10b68e578>, 'fdel': None, 'fget': <function fget at 0x10b68ec08>}
John
John
Bob
John
The code is taken from here.
Question: what's wrong? It should be something simple but I can't find it.
Note: I need property for complex getting/setting, not simply hiding the attribute.
Thanks in advance.
fsetdoesn't setnameinstead of_name? Easy mistake to make, and would explain your symptoms.. – Martijn Pieters May 25 '12 at 20:34@property def name(...): "docstr" \n getter,@name.setter def name(...): setter? – delnan May 25 '12 at 20:43definstead of two (or three, or four) smalldef's. – tonytony May 26 '12 at 5:00