From: Andrew M. Kuchling Date: Fri, 10 Sep 2004 19:51:20 +0000 (+0000) Subject: [Bug #1023359] Make code match inheritance diagram X-Git-Tag: 2.2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3bc0d39d3d0648ccb21206c83acbfbb3fc1f0f5f;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 67e0c81f6340..e94ca1fd67ee 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()