summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-08-08 22:03:43 -0500
committerZachary Ware <zachary.ware@gmail.com>2015-08-08 22:03:43 -0500
commit83ee5a315ffbf6e6601cc5c5e7a692d249efb5ad (patch)
treeb452baaeaa7ef5465b1c365552f840cff1354eb3
parent71a36f735ba8b70a4f6ff51fdc10f1c8df0285da (diff)
parent9a47ed883943589c68987a41e5662012131b3536 (diff)
downloadcpython-git-83ee5a315ffbf6e6601cc5c5e7a692d249efb5ad.tar.gz
Merge 3.4
-rwxr-xr-xLib/test/regrtest.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 5650be070f..b49e66be37 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -796,10 +796,8 @@ def main(tests=None, **kwargs):
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")))