From: Guido van Rossum Date: Fri, 24 Aug 2001 17:07:20 +0000 (+0000) Subject: supers(): typo -- "if verify" should be "if verbose". X-Git-Tag: v2.2a3~339 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9881fc124e34b92d0cc3ad50aee4fbce6c9a10b4;p=thirdparty%2FPython%2Fcpython.git supers(): typo -- "if verify" should be "if verbose". --- diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index a79353fa9b23..054dd8710f1c 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -1093,7 +1093,7 @@ def getsets(): ## verify(not hasattr(a, "x")) def supers(): - if verify: print "Testing super..." + if verbose: print "Testing super..." class A(object): def meth(self, a):