diff options
author | Georg Brandl <georg@python.org> | 2006-10-12 07:38:08 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-10-12 07:38:08 +0000 |
commit | bdbb9c62deea03ddb592d839d6e86236a205f431 (patch) | |
tree | 06c8c669d2a4883105e92db64b5b7ba39920b2d1 | |
parent | a1cf44de4c085d733944b2fc3c20735f048e321d (diff) | |
download | cpython-git-bdbb9c62deea03ddb592d839d6e86236a205f431.tar.gz |
Bug #1575746: fix typo in property() docs.
(backport from rev. 52293)
-rw-r--r-- | Doc/lib/libfuncs.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 0a187e238b..dc52915c92 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 |