diff options
author | Martin Panter <vadmium+py@gmail.com> | 2017-01-29 10:10:30 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-29 10:10:30 (GMT) |
commit | af4e5d9dedea792d10d5678601c294351e6973e8 (patch) | |
tree | c863ba6432d569482cb2ec24453079e4884e7ec4 /Doc | |
parent | bea12f4ef3e90ae919957b327bdcac845a95d17b (diff) | |
parent | 2be98894059a13529d5696afb8fcb33408d2e9dd (diff) | |
download | cpython-af4e5d9dedea792d10d5678601c294351e6973e8.zip cpython-af4e5d9dedea792d10d5678601c294351e6973e8.tar.gz cpython-af4e5d9dedea792d10d5678601c294351e6973e8.tar.bz2 |
Issues #12067: Merge hash recommendation from 3.6
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/expressions.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index b37df92..3a4b805 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -1415,6 +1415,10 @@ some consistency rules, if possible: sequences, but not to sets or mappings). See also the :func:`~functools.total_ordering` decorator. +* The :func:`hash` result should be consistent with equality. + Objects that are equal should either have the same hash value, + or be marked as unhashable. + Python does not enforce these consistency rules. In fact, the not-a-number values are an example for not following these rules. |