Close #10042: functools.total_ordering now handles NotImplemented

(Patch by Katie Miller)
This commit is contained in:
Nick Coghlan 2013-10-02 00:02:03 +10:00
parent e6f4631f08
commit f05d981f58
5 changed files with 207 additions and 19 deletions

View file

@ -862,6 +862,7 @@ Chad Miller
Damien Miller
Jason V. Miller
Jay T. Miller
Katie Miller
Roman Milner
Julien Miotte
Andrii V. Mishkovskyi

View file

@ -13,6 +13,10 @@ Core and Builtins
Library
-------
- Issue #10042: functools.total_ordering now correctly handles
NotImplemented being returned by the underlying comparison function (Patch
by Katie Miller)
- Issue #19092: contextlib.ExitStack now correctly reraises exceptions
from the __exit__ callbacks of inner context managers (Patch by Hrvoje
Nikšić)