summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-03-21 19:02:30 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-03-21 19:02:30 (GMT)
commitb3f95d7ff17f64de1a3b9b0d1e36d9a89748be3f (patch)
tree59ed50c18fb08f1c92669757e87ffd2ad266cce3 /Misc
parent7c010ee00cc0bfb859c326d9a78bd8dd2bf92246 (diff)
downloadcpython-b3f95d7ff17f64de1a3b9b0d1e36d9a89748be3f.zip
cpython-b3f95d7ff17f64de1a3b9b0d1e36d9a89748be3f.tar.gz
cpython-b3f95d7ff17f64de1a3b9b0d1e36d9a89748be3f.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 65b5c17..5f715cf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,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)