[Python-checkins] cpython (merge 3.5 -> default): Merge 3.5
zach.ware
python-checkins at python.org
Sun Aug 9 05:05:45 CEST 2015
https://hg.python.org/cpython/rev/57032f6ca3ce
changeset: 97336:57032f6ca3ce
parent: 97331:3eb4f96a3b30
parent: 97335:bd0e3409e207
user: Zachary Ware <zachary.ware at gmail.com>
date: Sat Aug 08 22:05:05 2015 -0500
summary:
Merge 3.5
files:
Lib/test/regrtest.py | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -796,10 +796,8 @@
for time, test in test_times[:10]:
print("%s: %.1fs" % (test, time))
if bad:
- bad = sorted(set(bad) - set(environment_changed))
- if bad:
- print(count(len(bad), "test"), "failed:")
- printlist(bad)
+ print(count(len(bad), "test"), "failed:")
+ printlist(bad)
if environment_changed:
print("{} altered the execution environment:".format(
count(len(environment_changed), "test")))
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list