Commit e21d9ab3 authored by Georg Brandl's avatar Georg Brandl

bug [ 1175022 ] property example code error

parent 03dbb4f5
......@@ -755,6 +755,7 @@ class C:
\begin{verbatim}
class C(object):
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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment