summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-03-21 18:53:42 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-03-21 18:53:42 (GMT)
commite112153727def076478a84733f30a8f44f4c8844 (patch)
tree91dfc5c7f1719a1958ef5f51c98f5d9e4aed1564 /Misc
parent0f71f4415603d36e0fabec812f93dc80547466b3 (diff)
downloadcpython-e112153727def076478a84733f30a8f44f4c8844.zip
cpython-e112153727def076478a84733f30a8f44f4c8844.tar.gz
cpython-e112153727def076478a84733f30a8f44f4c8844.tar.bz2
#12757: Make doctest skipping in -OO mode work with unittest/regrtest -v
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 dcf4e23..606898f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,9 @@ Core and Builtins
Library
-------
+- Issue #12757: Fix the skipping of doctests when python is run with -OO so
+ that it works in unittest's verbose mode as well as non-verbose mode.
+
- Issue #3573: IDLE hangs when passing invalid command line args
(directory(ies) instead of file(s)) (Patch by Guilherme Polo)