Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dtypeobject.c1302 subtype_dealloc(PyObject *self) in subtype_dealloc() function
1333 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) { in subtype_dealloc()
1367 Py_TRASHCAN_BEGIN(self, subtype_dealloc); in subtype_dealloc()
1371 while ((/*basedealloc =*/ base->tp_dealloc) == subtype_dealloc) { in subtype_dealloc()
1423 while ((basedealloc = base->tp_dealloc) == subtype_dealloc) { in subtype_dealloc()
2763 type->tp_dealloc = subtype_dealloc; in type_new_alloc()
3552 type->tp_dealloc = subtype_dealloc; in PyType_FromModuleAndSpec()
4619 (child->tp_dealloc == subtype_dealloc || in compatible_with_tp_base()
/third_party/python/Misc/NEWS.d/
D3.9.0a1.rst5609 Fix subtype_dealloc to suppress the type decref when the base type is a C