Issue #4701: implicitly call PyType_Ready from PyObject_Hash

This commit is contained in:
Nick Coghlan 2008-12-30 01:18:48 +00:00
parent c13acb18bc
commit 180e400766
4 changed files with 139 additions and 1 deletions

View file

@ -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.