Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Diterobject.c138 PyObject *it_callable; /* Set to NULL when iterator is exhausted */ member
150 it->it_callable = callable; in PyCallIter_New()
160 Py_XDECREF(it->it_callable); in calliter_dealloc()
168 Py_VISIT(it->it_callable); in calliter_traverse()
176 if (it->it_callable != NULL) { in calliter_iternext()
181 result = PyObject_Call(it->it_callable, args, NULL); in calliter_iternext()
192 Py_CLEAR(it->it_callable); in calliter_iternext()
198 Py_CLEAR(it->it_callable); in calliter_iternext()