From: Georg Brandl Date: Thu, 12 Oct 2006 07:38:04 +0000 (+0000) Subject: Bug #1575746: fix typo in property() docs. X-Git-Tag: v2.6a1~2579 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc8375748a8aacb1fb2e5eedd7a48bc6523b6fec;p=thirdparty%2FPython%2Fcpython.git Bug #1575746: fix typo in property() docs. --- diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 0a187e238ba3..dc52915c9283 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -791,7 +791,7 @@ class C: \begin{verbatim} class C(object): - def __init__(self): self.__x = None + def __init__(self): self._x = None def getx(self): return self._x def setx(self, value): self._x = value def delx(self): del self._x