Lines Matching defs:it_sentinel
181 PyObject *it_sentinel; /* Set to NULL when iterator is exhausted */
194 it->it_sentinel = sentinel;
203 Py_XDECREF(it->it_sentinel);
211 Py_VISIT(it->it_sentinel);
225 if (result != NULL && it->it_sentinel != NULL){
228 ok = PyObject_RichCompareBool(it->it_sentinel, result, Py_EQ);
235 Py_CLEAR(it->it_sentinel);
241 Py_CLEAR(it->it_sentinel);
256 if (it->it_callable != NULL && it->it_sentinel != NULL)
257 return Py_BuildValue("N(OO)", iter, it->it_callable, it->it_sentinel);