Home
last modified time | relevance | path

Searched refs:subtype_dealloc (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Objects/
Dtypeobject.c1195 subtype_dealloc(PyObject *self) in subtype_dealloc() function
1226 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) { in subtype_dealloc()
1252 Py_TRASHCAN_BEGIN(self, subtype_dealloc); in subtype_dealloc()
1256 while ((/*basedealloc =*/ base->tp_dealloc) == subtype_dealloc) { in subtype_dealloc()
1308 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) { in subtype_dealloc()
2809 type->tp_dealloc = subtype_dealloc; in type_new()
3044 type->tp_dealloc = subtype_dealloc; in PyType_FromModuleAndSpec()
4037 (child->tp_dealloc == subtype_dealloc || in compatible_with_tp_base()
/external/python/cpython2/Objects/
Dtypeobject.c921 subtype_dealloc(PyObject *self) in subtype_dealloc() function
949 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) { in subtype_dealloc()
987 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) { in subtype_dealloc()
1022 while (base->tp_dealloc == subtype_dealloc) { in subtype_dealloc()
2497 type->tp_dealloc = subtype_dealloc; in type_new()
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst5609 Fix subtype_dealloc to suppress the type decref when the base type is a C