[issue7374] Property accessor/getter called twice
Michal Liddle added the comment: Right you are. Looks like its actually an IPython specific behaviour here (didn't think to check that in the first place, sorry). -- ___ Python tracker <http://bugs.python.org/i
[issue7374] Property accessor/getter called twice
New submission from Michal Liddle : The following snippet demonstrates the problem: - class Test(object): def get(self): print "get" def set(self, v): print "set" test = property(get, set) t = Test