From: Ethan Furman Date: Fri, 31 Oct 2014 23:48:41 +0000 (-0700) Subject: issue22780: update NotImplemented description X-Git-Tag: v3.5.0a1~550 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8906f14a68d6ce19923e29d9e433f44d440324b4;p=python issue22780: update NotImplemented description --- diff --git a/Doc/library/constants.rst b/Doc/library/constants.rst index 059a21d5c8..a625b43442 100644 --- a/Doc/library/constants.rst +++ b/Doc/library/constants.rst @@ -26,9 +26,9 @@ A small number of constants live in the built-in namespace. They are: .. data:: NotImplemented - Special value which can be returned by the "rich comparison" special methods - (:meth:`__eq__`, :meth:`__lt__`, and friends), to indicate that the comparison - is not implemented with respect to the other type. + Special value which should be returned by the special methods + (:meth:`__eq__`, :meth:`__lt__`, :meth:`__add__`, etc.) to indicate + that the operation is not implemented with respect to the other type. .. data:: Ellipsis