summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-09-10 19:51:20 +0000
committerAndrew M. Kuchling <amk@amk.ca>2004-09-10 19:51:20 +0000
commit5a2cf40b644940c30f9b30d79045b2214a37ea9f (patch)
tree5999d6497a8d60c92d8f93f84ebbcebf39308edd
parentc9324d318a150ab060f5aeb7ee2639a1ccdf60c8 (diff)
downloadcpython-5a2cf40b644940c30f9b30d79045b2214a37ea9f.tar.gz
[Bug #1023359] Make code match inheritance diagram
-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 67e0c81f63..e94ca1fd67 100644
--- a/Doc/whatsnew/whatsnew22.tex
+++ b/Doc/whatsnew/whatsnew22.tex
@@ -344,7 +344,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()