Doctest results return a named tuple for readability
diff --git a/Misc/NEWS b/Misc/NEWS
index 88f1eb2..88a01a2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -351,6 +351,9 @@
 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.