Searched refs:tp_del (Results 1 – 11 of 11) sorted by relevance
73 destructor tp_del; member
54 offsetof(PyHeapTypeObject, ht_type.tp_del),
1135 if (type->tp_del) { in subtype_dealloc()1136 type->tp_del(self); in subtype_dealloc()1181 has_finalizer = type->tp_finalize || type->tp_del; in subtype_dealloc()1203 if (type->tp_del) { in subtype_dealloc()1205 type->tp_del(self); in subtype_dealloc()
32 Py_TYPE(gen)->tp_del(self); in gen_dealloc()
941 if (type->tp_del) { in subtype_dealloc()942 type->tp_del(self); in subtype_dealloc()1000 if (type->tp_del) { in subtype_dealloc()1002 type->tp_del(self); in subtype_dealloc()6088 TPSLOT("__del__", tp_del, slot_tp_del, NULL, ""),
398 destructor tp_del; member
420 destructor tp_del; member
212 C extension types with a non-NULL ``tp_del`` slot.
511 return op->ob_type->tp_del != NULL; in has_finalizer()
425 return op->ob_type->tp_del != NULL; in has_legacy_finalizer()
3250 tp->tp_del = slot_tp_del; in with_tp_del()