[issue7374] Property accessor/getter called twice

2009-11-22 Thread Michal Liddle
New submission from Michal Liddle mich...@liddle.net.nz: 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() t.test t.test

[issue7374] Property accessor/getter called twice

2009-11-22 Thread Michal Liddle
Michal Liddle mich...@liddle.net.nz 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 rep...@bugs.python.org http