This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mliddle
Recipients mliddle
Date 2009-11-22.08:14:56
SpamBayes Score 0.0068366993
Marked as misclassified No
Message-id <1258877699.05.0.144558862329.issue7374@psf.upfronthosting.co.za>
In-reply-to
Content
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 = 3
-----------------------------------

"get" is printed twice (expected once?), "set" is printed only once (as
expected)
History
Date User Action Args
2009-11-22 08:14:59mliddlesetrecipients: + mliddle
2009-11-22 08:14:59mliddlesetmessageid: <1258877699.05.0.144558862329.issue7374@psf.upfronthosting.co.za>
2009-11-22 08:14:57mliddlelinkissue7374 messages
2009-11-22 08:14:56mliddlecreate