summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2008-12-30 01:18:48 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2008-12-30 01:18:48 (GMT)
commit180e4007661f4480c3be50289748526c2647d28e (patch)
tree9c1da39d98c91ebb08054ddb19d608596b19b498 /Misc/NEWS
parentc13acb18bc2db9d8824ba94b86d8e4c8909d6b6c (diff)
downloadcpython-180e4007661f4480c3be50289748526c2647d28e.zip
cpython-180e4007661f4480c3be50289748526c2647d28e.tar.gz
cpython-180e4007661f4480c3be50289748526c2647d28e.tar.bz2
Issue #4701: implicitly call PyType_Ready from PyObject_Hash
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 539a41a..d5dec85 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #4701: PyObject_Hash now implicitly calls PyType_Ready on types
+ where the tp_hash and tp_dict slots are both NULL.
+
- Issue #4764: With io.open, IOError.filename is set when trying to open a
directory on POSIX systems.