[Python-checkins] r82587 - python/branches/py3k/Doc/whatsnew/2.7.rst

georg.brandl python-checkins at python.org
Mon Jul 5 19:48:38 CEST 2010


Author: georg.brandl
Date: Mon Jul  5 19:48:38 2010
New Revision: 82587

Log:
#9166: NotImplemented is not an exception.

Modified:
   python/branches/py3k/Doc/whatsnew/2.7.rst

Modified: python/branches/py3k/Doc/whatsnew/2.7.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/2.7.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/2.7.rst	Mon Jul  5 19:48:38 2010
@@ -1072,7 +1072,7 @@
   (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`.)
 


More information about the Python-checkins mailing list