summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2013-10-01 14:02:03 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2013-10-01 14:02:03 (GMT)
commitf05d981f5867dcb19c0724d88378bdd35d73f02d (patch)
treefede6e25c0ba2efe7bbaa93a8797fa59cd241e83 /Misc/NEWS
parente6f4631f0839a004c1d272c48811cdbed3e5ac9d (diff)
downloadcpython-f05d981f5867dcb19c0724d88378bdd35d73f02d.zip
cpython-f05d981f5867dcb19c0724d88378bdd35d73f02d.tar.gz
cpython-f05d981f5867dcb19c0724d88378bdd35d73f02d.tar.bz2
Close #10042: functools.total_ordering now handles NotImplemented
(Patch by Katie Miller)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 444a042..b2030a8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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ć)