Issue #22079: PyType_Ready() now checks that statically allocated type has

no dynamically allocated bases.
This commit is contained in:
Serhiy Storchaka 2015-01-28 11:03:33 +02:00
parent db07164053
commit e09bcc874a
2 changed files with 21 additions and 0 deletions

View file

@ -332,6 +332,12 @@ Build
- Issue #17128: Use private version of OpenSSL for 2.7.9 OS X 10.5+ installer.
C API
-----
- Issue #22079: PyType_Ready() now checks that statically allocated type has
no dynamically allocated bases.
Documentation
-------------
@ -1136,6 +1142,7 @@ Build
C API
-----
- Issue #20942: PyImport_ImportFrozenModuleObject() no longer sets __file__ to
match what importlib does; this affects _frozen_importlib as well as any
module loaded using imp.init_frozen().