bpo-31027: Fix test_listcomps failure when run directly (#2939)

Bug appears to be incomplete copy-paste-edit.
This commit is contained in:
Zackery Spytz 2017-07-29 10:05:55 -06:00 committed by Terry Jan Reedy
parent b331f80b47
commit ceb93f4540
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ def test_main(verbose=None):
import gc
counts = [None] * 5
for i in range(len(counts)):
support.run_doctest(test_genexps, verbose)
support.run_doctest(test_listcomps, verbose)
gc.collect()
counts[i] = sys.gettotalrefcount()
print(counts)