[Python-checkins] python/dist/src/Doc/whatsnew whatsnew22.tex, 1.54.2.4, 1.54.2.5

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Fri Sep 10 21:51:22 CEST 2004


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

Modified Files:
      Tag: release22-maint
	whatsnew22.tex 
Log Message:
[Bug #1023359] Make code match inheritance diagram

Index: whatsnew22.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew22.tex,v
retrieving revision 1.54.2.4
retrieving revision 1.54.2.5
diff -u -d -r1.54.2.4 -r1.54.2.5
--- whatsnew22.tex	20 May 2003 18:13:14 -0000	1.54.2.4
+++ whatsnew22.tex	10 Sep 2004 19:51:20 -0000	1.54.2.5
@@ -344,7 +344,7 @@
 example, \class{D}'s \method{save()} method would look like this:
 
 \begin{verbatim}
-class D:
+class D (B,C):
     def save (self):
 	# Call superclass .save()
         super(D, self).save()



More information about the Python-checkins mailing list