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 | f9a07f2e11c76c0c1ced04fed8b86c9d23cb3ac8 (patch) | |
tree | 76e591027897e4127ffe9754f4a37fb47176f99e /Misc/NEWS | |
parent | 88c29877c7ebe04892d2800c4e554298b9e38465 (diff) | |
download | cpython-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/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 #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. |