[Python-checkins] python/dist/src/Doc/lib libfuncs.tex, 1.175.2.3, 1.175.2.4

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Sat Jun 25 22:07:41 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23926/Doc/lib

Modified Files:
      Tag: release24-maint
	libfuncs.tex 
Log Message:
backport bug [ 1175022 ] property example code error



Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.175.2.3
retrieving revision 1.175.2.4
diff -u -d -r1.175.2.3 -r1.175.2.4
--- libfuncs.tex	25 May 2005 05:42:51 -0000	1.175.2.3
+++ libfuncs.tex	25 Jun 2005 20:07:39 -0000	1.175.2.4
@@ -717,6 +717,7 @@
 
 \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



More information about the Python-checkins mailing list