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 Antony.Lee
Recipients Antony.Lee, docs@python
Date 2017-08-28.19:42:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503949370.09.0.113747018634.issue31295@psf.upfronthosting.co.za>
In-reply-to
Content
In https://docs.python.org/3.7/reference/datamodel.html#object.__hash__ I think

x.__hash__() returns an appropriate value such that x == y implies both that x is y and hash(x) == hash(y).

should be

x.__hash__() returns an appropriate value such that x == y and x is y both imply that hash(x) == hash(y).

right?
History
Date User Action Args
2017-08-28 19:42:50Antony.Leesetrecipients: + Antony.Lee, docs@python
2017-08-28 19:42:50Antony.Leesetmessageid: <1503949370.09.0.113747018634.issue31295@psf.upfronthosting.co.za>
2017-08-28 19:42:50Antony.Leelinkissue31295 messages
2017-08-28 19:42:50Antony.Leecreate