From 2f32c39227e70215c9d9e8e4e50cb1227fc083d1 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 11 Jan 2008 09:20:58 +0000 Subject: [PATCH] News entries for rev. 5990[567]. --- Misc/NEWS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index 88a01a24de8..e625c3c9cde 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)