diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2008-12-30 01:18:48 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2008-12-30 01:18:48 (GMT) |
commit | 180e4007661f4480c3be50289748526c2647d28e (patch) | |
tree | 9c1da39d98c91ebb08054ddb19d608596b19b498 /Misc/NEWS | |
parent | c13acb18bc2db9d8824ba94b86d8e4c8909d6b6c (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |