summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2009-07-15 04:08:33 (GMT)
committerBrett Cannon <bcannon@gmail.com>2009-07-15 04:08:33 (GMT)
commitb49c70c7d30361856b73e0cf8de7cd6ad3af5e9f (patch)
tree7202abb69d89050068f426da408cf01b6375b7d8 /Misc
parentd8840860df164191ae5ab81d37435517f0d0a31b (diff)
downloadcpython-b49c70c7d30361856b73e0cf8de7cd6ad3af5e9f.zip
cpython-b49c70c7d30361856b73e0cf8de7cd6ad3af5e9f.tar.gz
cpython-b49c70c7d30361856b73e0cf8de7cd6ad3af5e9f.tar.bz2
Importlib was using custom code to discover all test modules in importlib.test.
This has now been removed in favor of using unittest's test discovery code in TestLoader.discover().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d44789e..a740b33 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -74,6 +74,12 @@ Build
- Issue 5390: Add uninstall icon independent of whether file
extensions are installed.
+Tests
+-----
+
+- Removed importlib's custom test discovery code and switched to
+ unittest.TestLoader.discover().
+
What's New in Python 3.1?
=========================