[Python-checkins] cpython (merge 3.4 -> 3.5): Merge 3.4

zach.ware python-checkins at python.org
Sun Aug 9 05:05:45 CEST 2015


https://hg.python.org/cpython/rev/bd0e3409e207
changeset:   97335:bd0e3409e207
branch:      3.5
parent:      97330:1df7a0821c73
parent:      97334:56f4327d3c57
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Sat Aug 08 22:03:43 2015 -0500
summary:
  Merge 3.4

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