diff options
author | Guido van Rossum <guido@python.org> | 2001-08-24 17:07:20 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-08-24 17:07:20 (GMT) |
commit | 9881fc124e34b92d0cc3ad50aee4fbce6c9a10b4 (patch) | |
tree | 7ebd6a243629e05439989cadf8a8f2822214ca1c /Lib | |
parent | c4a1880de49b81c05282ff62a590eb06daafca09 (diff) | |
download | cpython-9881fc124e34b92d0cc3ad50aee4fbce6c9a10b4.zip cpython-9881fc124e34b92d0cc3ad50aee4fbce6c9a10b4.tar.gz cpython-9881fc124e34b92d0cc3ad50aee4fbce6c9a10b4.tar.bz2 |
supers(): typo -- "if verify" should be "if verbose".
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_descr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index a79353f..054dd87 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): |