commit | 874d9bcbe5794539a4f6bc1ca46df7841b88f830 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Feb 01 02:33:45 2003 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sat Feb 01 02:33:45 2003 +0000 |
tree | 7cf186032d8986f269b98fe3ed0912aaaf6402ed | |
parent | 1f1b2d2e68ef520c2c7a937a4f429020a4627356 [diff] [blame] |
Neaten ref count test.
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py index c096e16..1239301 100644 --- a/Lib/test/test_itertools.py +++ b/Lib/test/test_itertools.py
@@ -151,7 +151,7 @@ counts = [] for i in xrange(5): test_support.run_suite(suite) - counts.append(sys.gettotalrefcount()) + counts.append(sys.gettotalrefcount()-i) print counts if __name__ == "__main__":