[issue1063] Small typo in properties example

2007-08-30 Thread Georg Brandl
Georg Brandl added the comment: Thanks, this is already fixed in the development docs (http://docs.python.org/dev). -- nosy: +georg.brandl resolution: -> out of date status: open -> closed __ Tracker <[EMAIL PROTECTED]>

[issue1063] Small typo in properties example

2007-08-30 Thread Carsten Grohmann
New submission from Carsten Grohmann: The example for property() contains a typo / small bug: class C(object): def __init__(self): self.__x = None [...] should be: class C(object): def __init__(self): self._x = None [...] Source: http://docs.python.org/lib/built-in-funcs.html ---