commit | bdbb9c62deea03ddb592d839d6e86236a205f431 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Oct 12 07:38:08 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Oct 12 07:38:08 2006 +0000 |
tree | 06c8c669d2a4883105e92db64b5b7ba39920b2d1 | |
parent | a1cf44de4c085d733944b2fc3c20735f048e321d [diff] |
Bug #1575746: fix typo in property() docs. (backport from rev. 52293)
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 0a187e2..dc52915 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex
@@ -791,7 +791,7 @@ \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