diff options
author | Raymond Hettinger <python@rcn.com> | 2008-01-11 01:25:54 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-01-11 01:25:54 (GMT) |
commit | fff4e6e17190bb62c542eed1a477819d37c35b71 (patch) | |
tree | 483e9dbab9b4a64661b4c182d488e77be7f3e4c4 /Misc | |
parent | d1ef85420f80db51f7289265aa103dff746c6517 (diff) | |
download | cpython-fff4e6e17190bb62c542eed1a477819d37c35b71.zip cpython-fff4e6e17190bb62c542eed1a477819d37c35b71.tar.gz cpython-fff4e6e17190bb62c542eed1a477819d37c35b71.tar.bz2 |
Doctest results return a named tuple for readability
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -351,6 +351,9 @@ Core and builtins Library ------- +- Doctest now returns results as a named tuple for readability: + (0, 7) --> TestResults(failed=0, attempted=7) + - Issue #846388. re.match is interruptible now, which is particularly good for long regular expression matches. |