From: Georg Brandl Date: Fri, 11 Jan 2008 09:20:58 +0000 (+0000) Subject: News entries for rev. 5990[567]. X-Git-Tag: v2.6a1~643 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f32c39227e70215c9d9e8e4e50cb1227fc083d1;p=python News entries for rev. 5990[567]. --- diff --git a/Misc/NEWS b/Misc/NEWS index 88a01a24de..e625c3c9cd 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)