Searched refs:_PyObject_Del (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Include/ |
D | objimpl.h | 142 #define _PyObject_Del PyObject_Free macro
|
/external/python/cpython2/Doc/c-api/ |
D | allocation.rst | 19 .. c:function:: void _PyObject_Del(PyObject *op)
|
D | typeobj.rst | 1037 The only initializer that is compatible with both versions is ``_PyObject_Del``,
|
/external/python/cpython2/Modules/ |
D | _randommodule.c | 589 _PyObject_Del, /*tp_free*/
|
D | bz2module.c | 1607 _PyObject_Del, /*tp_free*/ 1896 _PyObject_Del, /*tp_free*/ 2130 _PyObject_Del, /*tp_free*/
|
/external/python/cpython2/Objects/ |
D | object.c | 262 #undef _PyObject_Del 264 _PyObject_Del(PyObject *op) in _PyObject_Del() function
|
D | typeobject.c | 4106 base->tp_free == _PyObject_Del) {
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 486 "_PyObject_Del"
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1822 _PyObject_Del:void::: 1823 _PyObject_Del:PyObject*:op:0:
|
/external/python/cpython2/Misc/ |
D | HISTORY | 4143 tp_free slot is the default _PyObject_Del, and type does not define 4145 Previously _PyObject_Del was inherited, which could at best lead to a 4147 slot is _PyObject_Del or NULL, and the type is a base type 4150 is gc'able, tp_free must not be NULL or _PyObject_Del.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 17367 PyArg_NoArgs, _PyObject_Del. 21527 tp_free slot is the default _PyObject_Del, and type does not define 21529 Previously _PyObject_Del was inherited, which could at best lead to a 21531 slot is _PyObject_Del or NULL, and the type is a base type 21534 is gc'able, tp_free must not be NULL or _PyObject_Del.
|