New submission from John <[EMAIL PROTECTED]>: 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 ---------- assignee: georg.brandl components: Documentation messages: 74081 nosy: fretai, georg.brandl severity: normal status: open title: A Bug in the Documentation versions: Python 3.0, Python 3.1 _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue4002> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com