summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/whatsnew22.tex
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-09-10 19:33:00 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-09-10 19:33:00 (GMT)
commitf08437ca08b25da10665cd1caa1d8e8d0e9bd62e (patch)
tree047e635c3fb25e4809c3a7a4e392e2ff0afbfd52 /Doc/whatsnew/whatsnew22.tex
parentf43e8bd7b4c84229fdd4a63650495fe4b9d55f16 (diff)
downloadcpython-f08437ca08b25da10665cd1caa1d8e8d0e9bd62e.zip
cpython-f08437ca08b25da10665cd1caa1d8e8d0e9bd62e.tar.gz
cpython-f08437ca08b25da10665cd1caa1d8e8d0e9bd62e.tar.bz2
[Bug #1023359] Make code match inheritance diagram
Diffstat (limited to 'Doc/whatsnew/whatsnew22.tex')
-rw-r--r--Doc/whatsnew/whatsnew22.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew22.tex b/Doc/whatsnew/whatsnew22.tex
index e2f6bef..82ff061 100644
--- a/Doc/whatsnew/whatsnew22.tex
+++ b/Doc/whatsnew/whatsnew22.tex
@@ -347,7 +347,7 @@ will be used in methods to call a method in the superclass; for
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()