summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorTim Peters <tim@python.org>2013-12-04 03:02:05 (GMT)
committerTim Peters <tim@python.org>2013-12-04 03:02:05 (GMT)
commitf9a07f2e11c76c0c1ced04fed8b86c9d23cb3ac8 (patch)
tree76e591027897e4127ffe9754f4a37fb47176f99e /Misc/NEWS
parent88c29877c7ebe04892d2800c4e554298b9e38465 (diff)
downloadcpython-f9a07f2e11c76c0c1ced04fed8b86c9d23cb3ac8.zip
cpython-f9a07f2e11c76c0c1ced04fed8b86c9d23cb3ac8.tar.gz
cpython-f9a07f2e11c76c0c1ced04fed8b86c9d23cb3ac8.tar.bz2
Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 45f09b1..d767b2c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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 #19827: On UNIX, setblocking() and settimeout() methods of
socket.socket can now avoid a second syscall if the ioctl() function can be
used, or if the non-blocking flag of the socket is unchanged.