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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f08437ca08b25da10665cd1caa1d8e8d0e9bd62e;p=python [Bug #1023359] Make code match inheritance diagram --- diff --git a/Doc/whatsnew/whatsnew22.tex b/Doc/whatsnew/whatsnew22.tex index e2f6bef5fb..82ff061338 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()