diff options
| author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-25 19:47:22 (GMT) |
|---|---|---|
| committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-25 19:47:22 (GMT) |
| commit | 7620f66397fbbd49ed4894a80de3d56356e6273e (patch) | |
| tree | 6e009272b353207422458ec4800f01518e624378 /Lib/test/test_enumerate.py | |
| parent | 71b2315824631a6152fad2c07a5e55f8733ce8ef (diff) | |
| download | cpython-7620f66397fbbd49ed4894a80de3d56356e6273e.zip cpython-7620f66397fbbd49ed4894a80de3d56356e6273e.tar.gz cpython-7620f66397fbbd49ed4894a80de3d56356e6273e.tar.bz2 | |
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.
........
Diffstat (limited to 'Lib/test/test_enumerate.py')
| -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 7aae7c0..3522b4f 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 xrange(len(counts)): - test_support.run_unittest(*testclasses) + test_support.run_unittest(__name__) counts[i] = sys.gettotalrefcount() print counts |
