summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-05 17:48:38 (GMT)
committerGeorg Brandl <georg@python.org>2010-07-05 17:48:38 (GMT)
commitb0f0991cdb584626c4cecdc307caacd4a6b5c2c0 (patch)
treebf98ac0c1e0eb78db174b9efadfa58f7aebd855d /Doc/whatsnew
parent97c694b90b17f8baa68e0c01c20ff5eff6cfce28 (diff)
downloadcpython-b0f0991cdb584626c4cecdc307caacd4a6b5c2c0.zip
cpython-b0f0991cdb584626c4cecdc307caacd4a6b5c2c0.tar.gz
cpython-b0f0991cdb584626c4cecdc307caacd4a6b5c2c0.tar.bz2
#9166: NotImplemented is not an exception.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/2.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst
index 43a0124..cea0557 100644
--- a/Doc/whatsnew/2.7.rst
+++ b/Doc/whatsnew/2.7.rst
@@ -1072,7 +1072,7 @@ changes, or look through the Subversion logs for all the details.
(Added by Raymond Hettinger; :issue:`1818`.)
Finally, the :class:`~collections.Mapping` abstract base class now
- raises a :exc:`NotImplemented` exception if a mapping is compared to
+ returns :const:`NotImplemented` if a mapping is compared to
another type that isn't a :class:`Mapping`.
(Fixed by Daniel Stutzbach; :issue:`8729`.)