diff options
author | Barry Warsaw <barry@python.org> | 2013-07-15 18:47:29 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2013-07-15 18:47:29 (GMT) |
commit | 224a599c0c0755a3a2602a9f0051a6707c8e1162 (patch) | |
tree | 598c3d6fac4c1ccec71c549b9b1cd4172592b4cb /Misc | |
parent | 48830035e5e616b9660014cc451198b82e3f8a8e (diff) | |
download | cpython-224a599c0c0755a3a2602a9f0051a6707c8e1162.zip cpython-224a599c0c0755a3a2602a9f0051a6707c8e1162.tar.gz cpython-224a599c0c0755a3a2602a9f0051a6707c8e1162.tar.bz2 |
- Issue #18440: Clarify that `hash()` can truncate the value returned from an
object's custom `__hash__()` method.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -210,6 +210,9 @@ Tests Documentation ------------- +- Issue #18440: Clarify that `hash()` can truncate the value returned from an + object's custom `__hash__()` method. + - Issue #17953: Mention that you shouldn't replace sys.modules and deleting key items will cause Python to not be happy. |