This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author murali
Recipients docs@python, murali
Date 2019-12-20.16:42:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1576860176.18.0.619926767128.issue39111@roundup.psfhosted.org>
In-reply-to
Content
The documentation at https://docs.python.org/3.6/library/constants.html#NotImplemented states

If all attempts return NotImplemented, the interpreter will raise an appropriate exception. However this is not true for __eq__.

===
class Foo:
  def __eq__(self, other):
    return NotImplemented

Foo() == Foo() # returns False, does not throw an exception
====
History
Date User Action Args
2019-12-20 16:42:56muralisetrecipients: + murali, docs@python
2019-12-20 16:42:56muralisetmessageid: <1576860176.18.0.619926767128.issue39111@roundup.psfhosted.org>
2019-12-20 16:42:56muralilinkissue39111 messages
2019-12-20 16:42:55muralicreate