diff options
author | Tim Peters <tim@python.org> | 2013-12-04 03:02:05 (GMT) |
---|---|---|
committer | Tim Peters <tim@python.org> | 2013-12-04 03:02:05 (GMT) |
commit | 13e6d23bb13d481caa9e9491b85062b643668d22 (patch) | |
tree | 19dff2bcc78ecb9efa0a0d564977ed9dd90a73bc /Misc | |
parent | 4b7f7acf30991a8e4bcf61eba36cc695036703ca (diff) | |
download | cpython-13e6d23bb13d481caa9e9491b85062b643668d22.zip cpython-13e6d23bb13d481caa9e9491b85062b643668d22.tar.gz cpython-13e6d23bb13d481caa9e9491b85062b643668d22.tar.bz2 |
Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all.
(grafted from c80083ad142db2939507800c755082293a87f2de)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -18,6 +18,10 @@ Core and Builtins Library ------- +- Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows a match when + no exception detail exists (no colon following the exception's name, or + a colon does follow but no text follows the colon). + - Issue #19834: Support unpickling of exceptions pickled by Python 2. - Issue #15798: Fixed subprocess.Popen() to no longer fail if file |