Home
last modified time | relevance | path

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

/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/cpython2/Doc/includes/
Dtypestruct.h69 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…
1061 .. c:member:: inquiry PyTypeObject.tp_is_gc
1073 int tp_is_gc(PyObject *self)
/external/python/cpython2/Objects/
Dtypeobject.c4035 COPYSLOT(tp_is_gc);
/external/python/cpython2/Misc/
DHISTORY5830 - PyType_Ready() accidentally did not inherit tp_is_gc; now it does.