Commit 320a1b04 authored by Raymond Hettinger's avatar Raymond Hettinger

Simplify ref count test.

parent 8fd3f871
......@@ -283,10 +283,10 @@ def test_main(verbose=None):
# verify reference counting
import sys
if verbose and hasattr(sys, "gettotalrefcount"):
counts = []
for i in xrange(5):
counts = [None] * 5
for i in xrange(len(counts)):
test_support.run_suite(suite)
counts.append(sys.gettotalrefcount()-i)
counts[i] = sys.gettotalrefcount()
print counts
if __name__ == "__main__":
......
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