summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2013-11-19 03:44:38 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2013-11-19 03:44:38 (GMT)
commit4accf45f0e231987a47e1dc2bee0fef5e1b03962 (patch)
tree42136986997379dc30763f6a99615b4868c18bc6 /Misc
parent30d8e167ff37f25f63cced74cac970ca409cbd99 (diff)
downloadcpython-4accf45f0e231987a47e1dc2bee0fef5e1b03962.zip
cpython-4accf45f0e231987a47e1dc2bee0fef5e1b03962.tar.gz
cpython-4accf45f0e231987a47e1dc2bee0fef5e1b03962.tar.bz2
Issue #19596: Set untestable tests in test_importlib to None
to avoid reporting success on empty tests.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1ea0e47..897bbc2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,9 @@ Library
Tests
-----
+- Issue #19596: Set untestable tests in test_importlib to None to avoid
+ reporting success on empty tests.
+
- Issue #19440: Clean up test_capi by removing an unnecessary __future__
import, converting from test_main to unittest.main, and running the
_testcapi module tests within a unittest TestCase.