Commit 7620f663 authored by Mark Dickinson's avatar Mark Dickinson

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.
........
parent 71b23158
......@@ -227,7 +227,7 @@ def test_main(verbose=None):
if verbose and hasattr(sys, "gettotalrefcount"):
counts = [None] * 5
for i in xrange(len(counts)):
test_support.run_unittest(*testclasses)
test_support.run_unittest(__name__)
counts[i] = sys.gettotalrefcount()
print counts
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment