[Python-checkins] [3.6] bpo-31027: Fix test_listcomps failure when run directly (GH-2939) (#2945)
Terry Jan Reedy
webhook-mailer at python.org
Sat Jul 29 14:38:27 EDT 2017
https://github.com/python/cpython/commit/b26cc82b2252dd54e73661a026b32e7808fef945
commit: b26cc82b2252dd54e73661a026b32e7808fef945
branch: 3.6
author: Terry Jan Reedy <tjreedy at udel.edu>
committer: GitHub <noreply at github.com>
date: 2017-07-29T14:38:24-04:00
summary:
[3.6] bpo-31027: Fix test_listcomps failure when run directly (GH-2939) (#2945)
Bug appears to be incomplete copy-paste-edit.
(cherry picked from commit ceb93f4)
files:
M Lib/test/test_listcomps.py
diff --git a/Lib/test/test_listcomps.py b/Lib/test/test_listcomps.py
index 1f8265f077e..ddb169fe589 100644
--- a/Lib/test/test_listcomps.py
+++ b/Lib/test/test_listcomps.py
@@ -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)
More information about the Python-checkins
mailing list