commit | fc8375748a8aacb1fb2e5eedd7a48bc6523b6fec | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Oct 12 07:38:04 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Oct 12 07:38:04 2006 +0000 |
tree | 37c15d936eb8821520ccb8e0640d0906fa4c1d1d | |
parent | 74d3eef73ee22d198245094d765b4b7a1b5b2cd6 [diff] [blame] |
Bug #1575746: fix typo in property() docs.
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