Home
last modified time | relevance | path

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

/third_party/python/Doc/includes/
Dtypestruct.h76 destructor tp_del; member
/third_party/python/Objects/
Dtypeslots.inc54 {-1, offsetof(PyTypeObject, tp_del)},
Dtypeobject.c1324 if (type->tp_del) { in subtype_dealloc()
1325 type->tp_del(self); in subtype_dealloc()
1376 has_finalizer = type->tp_finalize || type->tp_del; in subtype_dealloc()
1398 if (type->tp_del) { in subtype_dealloc()
1400 type->tp_del(self); in subtype_dealloc()
/third_party/python/Include/cpython/
Dobject.h266 destructor tp_del; member
/third_party/python/Doc/library/
Dgc.rst242 C extension types with a non-``NULL`` ``tp_del`` slot.
/third_party/python/Modules/
Dgcmodule.c668 return Py_TYPE(op)->tp_del != NULL; in has_legacy_finalizer()
D_testcapimodule.c3775 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` | …
1955 .. c:member:: destructor PyTypeObject.tp_del