Searched refs:_PyObject_Del (Results 1 – 10 of 10) sorted by relevance
142 #define _PyObject_Del PyObject_Free macro
580 _PyObject_Del, /*tp_free*/
1593 _PyObject_Del, /*tp_free*/1882 _PyObject_Del, /*tp_free*/2116 _PyObject_Del, /*tp_free*/
19 .. c:function:: void _PyObject_Del(PyObject *op)
1052 The only initializer that is compatible with both versions is ``_PyObject_Del``,
262 #undef _PyObject_Del264 _PyObject_Del(PyObject *op) in _PyObject_Del() function
4043 base->tp_free == _PyObject_Del) {
486 "_PyObject_Del"
1822 _PyObject_Del:void:::1823 _PyObject_Del:PyObject*:op:0:
4143 tp_free slot is the default _PyObject_Del, and type does not define4145 Previously _PyObject_Del was inherited, which could at best lead to a4147 slot is _PyObject_Del or NULL, and the type is a base type4150 is gc'able, tp_free must not be NULL or _PyObject_Del.