diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-09-10 19:33:00 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-09-10 19:33:00 (GMT) |
commit | f08437ca08b25da10665cd1caa1d8e8d0e9bd62e (patch) | |
tree | 047e635c3fb25e4809c3a7a4e392e2ff0afbfd52 | |
parent | f43e8bd7b4c84229fdd4a63650495fe4b9d55f16 (diff) | |
download | cpython-f08437ca08b25da10665cd1caa1d8e8d0e9bd62e.zip cpython-f08437ca08b25da10665cd1caa1d8e8d0e9bd62e.tar.gz cpython-f08437ca08b25da10665cd1caa1d8e8d0e9bd62e.tar.bz2 |
[Bug #1023359] Make code match inheritance diagram
-rw-r--r-- | Doc/whatsnew/whatsnew22.tex | 2 |
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() |