summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-08-24 17:07:20 (GMT)
committerGuido van Rossum <guido@python.org>2001-08-24 17:07:20 (GMT)
commit9881fc124e34b92d0cc3ad50aee4fbce6c9a10b4 (patch)
tree7ebd6a243629e05439989cadf8a8f2822214ca1c
parentc4a1880de49b81c05282ff62a590eb06daafca09 (diff)
downloadcpython-9881fc124e34b92d0cc3ad50aee4fbce6c9a10b4.zip
cpython-9881fc124e34b92d0cc3ad50aee4fbce6c9a10b4.tar.gz
cpython-9881fc124e34b92d0cc3ad50aee4fbce6c9a10b4.tar.bz2
supers(): typo -- "if verify" should be "if verbose".
-rw-r--r--Lib/test/test_descr.py2
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):