Home
last modified time | relevance | path

Searched refs:PyObject_Del (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython3/Include/
Dobjimpl.h107 #define PyObject_Del PyObject_Free macro
/external/python/cpython3/Doc/c-api/
Dallocation.rst53 .. c:function:: void PyObject_Del(void *op)
Dmemory.rst767 :c:macro:`PyObject_NewVar` and :c:func:`PyObject_Del`.
Dtypeobj.rst653 instance; this is normally :c:func:`PyObject_Del` if the instance was allocated
1970 For static subtypes, :c:data:`PyBaseObject_Type` uses :c:func:`PyObject_Del`.
/external/python/cpython3/Modules/_testcapi/
Dgc.c75 tp->tp_free = PyObject_Del; in without_gc()
/external/python/cpython3/Objects/
Dfileobject.c465 PyObject_Del, /* tp_free */
Dcomplexobject.c1138 PyObject_Del, /* tp_free */
Drangeobject.c902 (destructor)PyObject_Del, /* tp_dealloc */
Dcodeobject.c1366 PyObject_Del, /* tp_free */
1457 PyObject_Del, /* tp_free */
Dbytearrayobject.c2429 PyObject_Del, /* tp_free */
Dbytesobject.c3058 PyObject_Del, /* tp_free */
Dtypeobject.c7272 PyObject_Del, /* tp_free */
8002 (type->tp_free == NULL || type->tp_free == PyObject_Del)) in type_ready_inherit()
Dunicodeobject.c15000 PyObject_Del, /* tp_free */
/external/python/cpython3/Modules/
D_testcapimodule.c285 (destructor)PyObject_Del, /* tp_dealloc */
3590 PyObject_Del, /* tp_free */
3702 PyObject_Del, /* tp_free */
/external/cronet/stable/third_party/protobuf/python/google/protobuf/pyext/
Ddescriptor.cc379 PyObject_Del(py_descriptor); in NewInternedDescriptor()
/external/cronet/tot/third_party/protobuf/python/google/protobuf/pyext/
Ddescriptor.cc379 PyObject_Del(py_descriptor); in NewInternedDescriptor()
/external/python/cpython3/Python/
Doptimizer.c1423 .tp_dealloc = (destructor)PyObject_Del,
/external/protobuf/python/google/protobuf/pyext/
Ddescriptor.cc379 PyObject_Del(py_descriptor); in NewInternedDescriptor()
/external/marisa-trie/bindings/python/
Dmarisa-swig_wrap.cxx844 # define PyObject_Del(op) PyMem_DEL((op)) macro
847 # define PyObject_DEL PyObject_Del
/external/webp/swig/
Dlibwebp_python_wrap.c846 # define PyObject_DEL PyObject_Del
/external/python/cpython3/Doc/whatsnew/
D2.3.rst1850 :c:macro:`PyObject_New`, :c:macro:`PyObject_NewVar`, and :c:func:`PyObject_Del`.
/external/python/cpython3/Misc/
DHISTORY23207 - PyObject_Del, PyObject_GC_Del are now functions instead of macros.