summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-28 09:03:33 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-28 09:03:33 (GMT)
commite09bcc874a21ce351a7fe73b9a137e236550d03c (patch)
tree8db3467cbc8fec6df15e1868d2557afecbd9569b /Misc
parentdb071640537f620a562be1b797ceccae25f436a9 (diff)
downloadcpython-e09bcc874a21ce351a7fe73b9a137e236550d03c.zip
cpython-e09bcc874a21ce351a7fe73b9a137e236550d03c.tar.gz
cpython-e09bcc874a21ce351a7fe73b9a137e236550d03c.tar.bz2
Issue #22079: PyType_Ready() now checks that statically allocated type has
no dynamically allocated bases.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bf643d0..f21c2b8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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().