summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-03-10 15:02:45 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-03-10 15:02:45 (GMT)
commitc5f5d69517c7a95703e0e214a673ae2452f2c66b (patch)
tree23061e3598cbb675ebbc8f558d89f895aed05a6b /Doc
parenta6ea7a3c8f3ba3174b60dd23349183b4d9ae3f18 (diff)
downloadcpython-c5f5d69517c7a95703e0e214a673ae2452f2c66b.zip
cpython-c5f5d69517c7a95703e0e214a673ae2452f2c66b.tar.gz
cpython-c5f5d69517c7a95703e0e214a673ae2452f2c66b.tar.bz2
whatsnew: total_ordering supports NotImplemented (#10042)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.4.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 2f1c904..ed72fed 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -811,6 +811,10 @@ stdlib; in CPython it is overridden by the C accelerated version, but it is
available for other implementations to use. (Contributed by Brian Thorne in
:issue:`12428`.)
+:func:`~functools.total_ordering` now supports a return value of
+:const:`NotImplemented` from the underlying comparison function. (Contributed
+by Katie Miller in :issue:`10042`.)
+
gc
--