diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-11-21 21:28:01 +0000 |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-11-21 21:28:01 +0000 |
commit | 945d5a8ae06846712f77114bb33ccc50cca6ccb5 (patch) | |
tree | 9d75f2c903a4d04feef09573e28e0d48b67376bb /Misc/NEWS | |
parent | 762b9ac46ca0e977cbe1ffa014e0937e56dcae99 (diff) | |
download | cpython-945d5a8ae06846712f77114bb33ccc50cca6ccb5.tar.gz |
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/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |