Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dexceptions.c481 {"value", T_OBJECT, offsetof(PyStopIterationObject, value), 0,
487 StopIteration_init(PyStopIterationObject *self, PyObject *args, PyObject *kwds) in StopIteration_init()
505 StopIteration_clear(PyStopIterationObject *self) in StopIteration_clear()
512 StopIteration_dealloc(PyStopIterationObject *self) in StopIteration_dealloc()
520 StopIteration_traverse(PyStopIterationObject *self, visitproc visit, void *arg) in StopIteration_traverse()
Dgenobject.c601 value = ((PyStopIterationObject *)ev)->value; in _PyGen_FetchStopIterationValue()
621 value = ((PyStopIterationObject *)ev)->value; in _PyGen_FetchStopIterationValue()
/external/python/cpython3/Include/
Dpyerrors.h66 } PyStopIterationObject; typedef