diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-07-15 04:08:33 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-07-15 04:08:33 (GMT) |
commit | b49c70c7d30361856b73e0cf8de7cd6ad3af5e9f (patch) | |
tree | 7202abb69d89050068f426da408cf01b6375b7d8 /Misc/NEWS | |
parent | d8840860df164191ae5ab81d37435517f0d0a31b (diff) | |
download | cpython-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/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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? ========================= |