Home
last modified time | relevance | path

Searched refs:_PyObject_Del (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Include/
Dobjimpl.h142 #define _PyObject_Del PyObject_Free macro
/external/python/cpython2/Modules/
D_randommodule.c580 _PyObject_Del, /*tp_free*/
Dbz2module.c1593 _PyObject_Del, /*tp_free*/
1882 _PyObject_Del, /*tp_free*/
2116 _PyObject_Del, /*tp_free*/
/external/python/cpython2/Doc/c-api/
Dallocation.rst19 .. c:function:: void _PyObject_Del(PyObject *op)
Dtypeobj.rst1052 The only initializer that is compatible with both versions is ``_PyObject_Del``,
/external/python/cpython2/Objects/
Dobject.c262 #undef _PyObject_Del
264 _PyObject_Del(PyObject *op) in _PyObject_Del() function
Dtypeobject.c4043 base->tp_free == _PyObject_Del) {
/external/python/cpython2/PC/os2emx/
Dpython27.def486 "_PyObject_Del"
/external/python/cpython2/Doc/data/
Drefcounts.dat1822 _PyObject_Del:void:::
1823 _PyObject_Del:PyObject*:op:0:
/external/python/cpython2/Misc/
DHISTORY4143 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.