Skip to content

Commit

Permalink
Bug #1575746: fix typo in property() docs.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.python.org/projects/python/trunk@52293 6015fed2-1504-0410-9fe1-9d1591cc4771
  • Loading branch information
georg.brandl committed Oct 12, 2006
1 parent ce6dfa9 commit 9bf1d5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/lib/libfuncs.tex
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ \section{Built-in Functions \label{built-in-funcs}}

\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
Expand Down

0 comments on commit 9bf1d5a

Please sign in to comment.