summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 88f1eb2..88a01a2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.