summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-01-11 09:20:58 (GMT)
committerGeorg Brandl <georg@python.org>2008-01-11 09:20:58 (GMT)
commit2f32c39227e70215c9d9e8e4e50cb1227fc083d1 (patch)
treee6c8e1d5e5332dcc665f1caba3da700616c0a88c /Misc
parentff15c866a65981682923b62684a88c8053533385 (diff)
downloadcpython-2f32c39227e70215c9d9e8e4e50cb1227fc083d1.zip
cpython-2f32c39227e70215c9d9e8e4e50cb1227fc083d1.tar.gz
cpython-2f32c39227e70215c9d9e8e4e50cb1227fc083d1.tar.bz2
News entries for rev. 5990[567].
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 88a01a2..e625c3c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -351,6 +351,9 @@ Core and builtins
Library
-------
+- Decimal.as_tuple(), difflib.find_longest_match() and inspect functions
+ that returned a tuple now return a named tuple.
+
- Doctest now returns results as a named tuple for readability:
(0, 7) --> TestResults(failed=0, attempted=7)