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 fretai
Recipients fretai, georg.brandl
Date 2008-09-30.15:38:05
SpamBayes Score 0.006475261
Marked as misclassified No
Message-id <1222789087.2.0.210162450661.issue4002@psf.upfronthosting.co.za>
In-reply-to
Content
Hello,

I've found a little bug in the documentation again and I wanna report 
it. Please navigate to where the built-in property() function is 
documented and look at the beginning of the 3rd code snippet:

class C(object):
    def __init__(self): self._x = None


Please fix this to the following...

class C(object):
    def __init__(self):
        self._x = None
History
Date User Action Args
2008-09-30 15:38:07fretaisetrecipients: + fretai, georg.brandl
2008-09-30 15:38:07fretaisetmessageid: <1222789087.2.0.210162450661.issue4002@psf.upfronthosting.co.za>
2008-09-30 15:38:06fretailinkissue4002 messages
2008-09-30 15:38:05fretaicreate