summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-28 11:03:33 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-28 11:03:33 +0200
commite09bcc874a21ce351a7fe73b9a137e236550d03c (patch)
tree8db3467cbc8fec6df15e1868d2557afecbd9569b /Objects
parentdb071640537f620a562be1b797ceccae25f436a9 (diff)
downloadcpython-git-e09bcc874a21ce351a7fe73b9a137e236550d03c.tar.gz
Issue #22079: PyType_Ready() now checks that statically allocated type has
no dynamically allocated bases.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/typeobject.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 1d98fc2405..453bb50ad3 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -4680,6 +4680,20 @@ PyType_Ready(PyTypeObject *type)
inherit_slots(type, (PyTypeObject *)b);
}
+ /* All bases of statically allocated type should be statically allocated */
+ if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE))
+ for (i = 0; i < n; i++) {
+ PyObject *b = PyTuple_GET_ITEM(bases, i);
+ if (PyType_Check(b) &&
+ (((PyTypeObject *)b)->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
+ PyErr_Format(PyExc_TypeError,
+ "type '%.100s' is not dynamically allocated but "
+ "its base type '%.100s' is dynamically allocated",
+ type->tp_name, ((PyTypeObject *)b)->tp_name);
+ goto error;
+ }
+ }
+
/* Sanity check for tp_free. */
if (PyType_IS_GC(type) && (type->tp_flags & Py_TPFLAGS_BASETYPE) &&
(type->tp_free == NULL || type->tp_free == PyObject_Del)) {