From: Andrew M. Kuchling Date: Fri, 10 Sep 2004 19:33:00 +0000 (+0000) Subject: [Bug #1023359] Make code match inheritance diagram X-Git-Tag: v2.4b1~299 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f08437ca08b25da10665cd1caa1d8e8d0e9bd62e;p=thirdparty%2FPython%2Fcpython.git [Bug #1023359] Make code match inheritance diagram --- diff --git a/Doc/whatsnew/whatsnew22.tex b/Doc/whatsnew/whatsnew22.tex index e2f6bef5fbd9..82ff06133875 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()