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 cito
Recipients cito, docs@python
Date 2019-05-31.09:07:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559293645.61.0.954260937021.issue37110@roundup.psfhosted.org>
In-reply-to
Content
The Python documentation says about hashability in the glossary (https://docs.python.org/3/glossary.html#term-hashable):

"Objects which are instances of user-defined classes are hashable by default."

This is not quite true. Objects of a user-defined class with an __eq__ method are not hashable. Maybe it would be better to make this more explicit:

"Objects which are instances of user_defined classes without custom __eq__ and __hash__ methods are hashable by default."
History
Date User Action Args
2019-05-31 09:07:25citosetrecipients: + cito, docs@python
2019-05-31 09:07:25citosetmessageid: <1559293645.61.0.954260937021.issue37110@roundup.psfhosted.org>
2019-05-31 09:07:25citolinkissue37110 messages
2019-05-31 09:07:25citocreate