Home
last modified time | relevance | path

Searched refs:PyObject_GC_Track (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython2/Misc/
Dpymemcompat.h81 #define PyObject_GC_Track(op) macro
DHISTORY7021 - rename PyObject_GC_Init to PyObject_GC_Track and PyObject_GC_Fini
/external/python/cpython2/Doc/c-api/
Dgcsupport.rst37 initialized, it must call :c:func:`PyObject_GC_Track`.
66 .. c:function:: void PyObject_GC_Track(PyObject *op)
77 A macro version of :c:func:`PyObject_GC_Track`. It should not be used for
98 collector. Note that :c:func:`PyObject_GC_Track` can be called again on
/external/python/cpython2/Objects/
Dmoduleobject.c36 PyObject_GC_Track(m); in PyModule_New()
Dweakrefobject.c39 PyObject_GC_Track(result); in new_weakref()
Dsetobject.c1015 PyObject_GC_Track(so); in make_new_set()
Dlistobject.c3001 PyObject_GC_Track(it); in list_reversed()
/external/python/cpython2/Modules/
Doperator.c489 PyObject_GC_Track(ig); in itemgetter_new()
628 PyObject_GC_Track(ag); in attrgetter_new()
817 PyObject_GC_Track(mc); in methodcaller_new()
Dgcmodule.c1457 #undef PyObject_GC_Track
1463 PyObject_GC_Track(void *op) in PyObject_GC_Track() function
1472 PyObject_GC_Track(op); in _PyObject_GC_Track()
D_csv.c960 PyObject_GC_Track(self); in csv_reader()
1389 PyObject_GC_Track(self); in csv_writer()
Ditertoolsmodule.c207 PyObject_GC_Track(igo); in _grouper_create()
357 PyObject_GC_Track(tdo); in teedataobject_new()
524 PyObject_GC_Track(newto); in tee_copy()
556 PyObject_GC_Track(to); in tee_fromiterable()
D_collectionsmodule.c1260 PyObject_GC_Track(it); in deque_iter()
1370 PyObject_GC_Track(it); in deque_reviter()
Dpyexpat.c1109 PyObject_GC_Track(new_parser); in xmlparse_ExternalEntityParserCreate()
1325 PyObject_GC_Track(self); in newxmlparseobject()
Darraymodule.c2217 PyObject_GC_Track(it); in array_iter()
DcPickle.c3132 PyObject_GC_Track(self); in newPicklerobject()
5546 PyObject_GC_Track(self); in newUnpicklerobject()
/external/python/cpython2/Include/
Dobjimpl.h309 PyAPI_FUNC(void) PyObject_GC_Track(void *);
/external/python/cpython2/Python/
Dtraceback.c100 PyObject_GC_Track(tb); in newtracebackobject()
/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c408 PyObject_GC_Track((PyObject *)p); in CThunkObject_new()
/external/python/cpython2/PC/os2emx/
Dpython27.def1184 "PyObject_GC_Track"
/external/python/cpython2/Doc/whatsnew/
D2.2.rst1086 * Rename :c:func:`PyObject_GC_Init` to :c:func:`PyObject_GC_Track` and