diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-25 19:48:15 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-25 19:48:15 (GMT) |
commit | 73ffb8b55279ccb20cfdea0f0d21d030edfc0ab4 (patch) | |
tree | a8048c8b606b6d3f226295e2391fc5a5b3e4e772 | |
parent | 341fe911026a6c7a675d14735613f21221d90c59 (diff) | |
download | cpython-73ffb8b55279ccb20cfdea0f0d21d030edfc0ab4.zip cpython-73ffb8b55279ccb20cfdea0f0d21d030edfc0ab4.tar.gz cpython-73ffb8b55279ccb20cfdea0f0d21d030edfc0ab4.tar.bz2 |
Merged revisions 81528 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r81528 | mark.dickinson | 2010-05-25 20:46:20 +0100 (Tue, 25 May 2010) | 9 lines
Merged revisions 81527 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81527 | mark.dickinson | 2010-05-25 20:44:49 +0100 (Tue, 25 May 2010) | 1 line
Fix a NameError in test_enumerate.
........
................
-rw-r--r-- | Lib/test/test_enumerate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_enumerate.py b/Lib/test/test_enumerate.py index 315069c4..4dc9a12 100644 --- a/Lib/test/test_enumerate.py +++ b/Lib/test/test_enumerate.py @@ -227,7 +227,7 @@ def test_main(verbose=None): if verbose and hasattr(sys, "gettotalrefcount"): counts = [None] * 5 for i in range(len(counts)): - support.run_unittest(*testclasses) + support.run_unittest(__name__) counts[i] = sys.gettotalrefcount() print(counts) |