summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2013-07-15 18:47:29 (GMT)
committerBarry Warsaw <barry@python.org>2013-07-15 18:47:29 (GMT)
commit224a599c0c0755a3a2602a9f0051a6707c8e1162 (patch)
tree598c3d6fac4c1ccec71c549b9b1cd4172592b4cb /Misc
parent48830035e5e616b9660014cc451198b82e3f8a8e (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 56ebe91..5bfa696 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.