diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-25 03:31:36 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-25 03:31:36 (GMT) |
commit | 711bf30b898c73a94f56b7edfb7dd10d5999cb27 (patch) | |
tree | 8414796c446936b19ae6949dc5a7cae548847a5e /Misc | |
parent | e96b229d2ad3944592b1889bb277388fec086049 (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |