| /* Iterators (the basic kind, over a sequence) */ | |
| extern "C" { | |
| PyAPI_DATA(PyTypeObject) PySeqIter_Type; | |
| PyAPI_DATA(PyTypeObject) PyCallIter_Type; | |
| extern PyTypeObject _PyAnextAwaitable_Type; | |
| PyAPI_FUNC(PyObject *) PySeqIter_New(PyObject *); | |
| PyAPI_FUNC(PyObject *) PyCallIter_New(PyObject *, PyObject *); | |
| } | |