summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-04-25 03:31:36 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-04-25 03:31:36 (GMT)
commit711bf30b898c73a94f56b7edfb7dd10d5999cb27 (patch)
tree8414796c446936b19ae6949dc5a7cae548847a5e /Misc/NEWS
parente96b229d2ad3944592b1889bb277388fec086049 (diff)
downloadcpython-711bf30b898c73a94f56b7edfb7dd10d5999cb27.zip
cpython-711bf30b898c73a94f56b7edfb7dd10d5999cb27.tar.gz
cpython-711bf30b898c73a94f56b7edfb7dd10d5999cb27.tar.bz2
Patch #1475231: add a new SKIP doctest option, thanks to
Edward Loper.
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 d972b5a..d8fa987 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -86,6 +86,10 @@ Extension Modules
Library
-------
+- Patch #1475231: ``doctest`` has a new ``SKIP`` option, which causes
+ a doctest to be skipped (the code is not run, and the expected output
+ or exception is ignored).
+
- Fixed contextlib.nested to cope with exceptions being raised and
caught inside exit handlers.