| commit | 711bf30b898c73a94f56b7edfb7dd10d5999cb27 | [log] [tgz] |
|---|---|---|
| author | Tim Peters <tim.peters@gmail.com> | Tue Apr 25 03:31:36 2006 +0000 |
| committer | Tim Peters <tim.peters@gmail.com> | Tue Apr 25 03:31:36 2006 +0000 |
| tree | 8414796c446936b19ae6949dc5a7cae548847a5e | |
| parent | e96b229d2ad3944592b1889bb277388fec086049 [diff] [blame] |
Patch #1475231: add a new SKIP doctest option, thanks to Edward Loper.
diff --git a/Misc/NEWS b/Misc/NEWS index d972b5a..d8fa987 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -86,6 +86,10 @@ 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.