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.

classification
Title: A Bug in the Documentation
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 3.1
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: fretai, georg.brandl
Priority: normal Keywords:

Created on 2008-09-30 15:38 by fretai, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg74081 - (view) Author: John (fretai) Date: 2008-09-30 15:38
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
msg74084 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-09-30 17:25
I don't see the bug in the code, nor what is solved by the code you propose.
History
Date User Action Args
2022-04-11 14:56:39adminsetgithub: 48252
2008-09-30 17:25:36georg.brandlsetstatus: open -> closed
resolution: wont fix
messages: + msg74084
2008-09-30 15:38:06fretaicreate