summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-28 09:06:04 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-28 09:06:04 (GMT)
commit66acbb28ee6b653b32c361591e7e009ddaf3543c (patch)
treea0464de49b77cdf9ba1b42c35b1189015645ac82 /Misc
parent85ad88dbc6e57d1b66869ebbb5caaa2d1119be4b (diff)
parente09bcc874a21ce351a7fe73b9a137e236550d03c (diff)
downloadcpython-66acbb28ee6b653b32c361591e7e009ddaf3543c.zip
cpython-66acbb28ee6b653b32c361591e7e009ddaf3543c.tar.gz
cpython-66acbb28ee6b653b32c361591e7e009ddaf3543c.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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index dd2fe53..8f13e60 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1519,6 +1519,9 @@ Build
C API
-----
+- Issue #22079: PyType_Ready() now checks that statically allocated type has
+ no dynamically allocated bases.
+
- Issue #22453: Removed non-documented macro PyObject_REPR().
- Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`,