Home
last modified time | relevance | path

Searched refs:tp_is_gc (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Include/internal/
Dpycore_object.h110 && (Py_TYPE(obj)->tp_is_gc == NULL in _PyObject_IS_GC()
111 || Py_TYPE(obj)->tp_is_gc(obj))); in _PyObject_IS_GC()
/external/python/cpython2/Doc/includes/
Dtypestruct.h69 inquiry tp_is_gc; /* For PyObject_IS_GC */ member
/external/python/cpython3/Doc/includes/
Dtypestruct.h67 inquiry tp_is_gc; /* For PyObject_IS_GC */ member
/external/python/cpython2/Include/
Dobjimpl.h242 (Py_TYPE(o)->tp_is_gc == NULL || Py_TYPE(o)->tp_is_gc(o)))
Dobject.h392 inquiry tp_is_gc; /* For PyObject_IS_GC */ member
/external/python/cpython3/Objects/
Dtypeslots.inc62 offsetof(PyHeapTypeObject, ht_type.tp_is_gc),
Dtypeobject.c5342 COPYSLOT(tp_is_gc); in inherit_slots()
/external/python/cpython3/Include/cpython/
Dobject.h261 inquiry tp_is_gc; /* For PyObject_IS_GC */ member
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst516 …:c:member:`~PyTypeObject.tp_free`, :c:member:`~PyTypeObject.tp_is_gc`, :c:member:`~PyTypeObject.tp…
1046 .. c:member:: inquiry PyTypeObject.tp_is_gc
1058 int tp_is_gc(PyObject *self)
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst130 …| :c:member:`~PyTypeObject.tp_is_gc` | :c:type:`inquiry` | …
1767 .. c:member:: inquiry PyTypeObject.tp_is_gc
1779 int tp_is_gc(PyObject *self);
/external/python/cpython2/Objects/
Dtypeobject.c4098 COPYSLOT(tp_is_gc);
/external/python/cpython2/Misc/
DHISTORY5830 - PyType_Ready() accidentally did not inherit tp_is_gc; now it does.
/external/python/cpython3/Misc/
DHISTORY23214 - PyType_Ready() accidentally did not inherit tp_is_gc; now it does.