News entries for rev. 5990[567].

This commit is contained in:
Georg Brandl 2008-01-11 09:20:58 +00:00
parent ff15c866a6
commit 2f32c39227
1 changed files with 3 additions and 0 deletions

View File

@ -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)