diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-11-21 21:28:01 (GMT) |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-11-21 21:28:01 (GMT) |
commit | 086f30815c0f674326fe78ba83689d0a2a96b8d7 (patch) | |
tree | 3c9ae9c0afa50d255f093cf730cafefbd5751efd /Misc | |
parent | 47c74ac97798950d3fbe973d0b9b9f292ae76eab (diff) | |
download | cpython-086f30815c0f674326fe78ba83689d0a2a96b8d7.zip cpython-086f30815c0f674326fe78ba83689d0a2a96b8d7.tar.gz cpython-086f30815c0f674326fe78ba83689d0a2a96b8d7.tar.bz2 |
Issue 10470: 'python -m unittest' launches test discovery by default.(If you need to pass options to test discovery the discover subcommand must still be specified explicitly.)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -695,6 +695,7 @@ Anthony Roach Mark Roberts Jim Robinson Andy Robinson +Mark Roddy Kevin Rodgers Giampaolo Rodola Mike Romberg @@ -32,6 +32,9 @@ Core and Builtins Library ------- +- Issue #10470: 'python -m unittest' will now run test discovery by default, + when no extra arguments have been provided. + - Issue #3709: BaseHTTPRequestHandler will buffer the headers and write to output stream only when end_headers is invoked. This is a speedup and an internal optimization. Patch by endian. |