Home
last modified time | relevance | path

Searched refs:tp_del (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Doc/includes/
Dtypestruct.h73 destructor tp_del; member
/third_party/python/Objects/
Dtypeslots.inc54 offsetof(PyHeapTypeObject, ht_type.tp_del),
Dtypeobject.c1217 if (type->tp_del) { in subtype_dealloc()
1218 type->tp_del(self); in subtype_dealloc()
1261 has_finalizer = type->tp_finalize || type->tp_del; in subtype_dealloc()
1283 if (type->tp_del) { in subtype_dealloc()
1285 type->tp_del(self); in subtype_dealloc()
/third_party/python/Include/cpython/
Dobject.h267 destructor tp_del; member
/third_party/python/Doc/library/
Dgc.rst236 C extension types with a non-``NULL`` ``tp_del`` slot.
/third_party/python/Modules/
Dgcmodule.c655 return Py_TYPE(op)->tp_del != NULL; in has_legacy_finalizer()
D_testcapimodule.c3627 tp->tp_del = slot_tp_del; in with_tp_del()
/third_party/python/Doc/c-api/
Dtypeobj.rst142 …| (:c:member:`~PyTypeObject.tp_del`) | :c:type:`destructor` | …
1847 .. c:member:: destructor PyTypeObject.tp_del