File indexing completed on 2025-11-19 09:50:53
0001 #ifndef Py_ITEROBJECT_H
0002 #define Py_ITEROBJECT_H
0003
0004 #ifdef __cplusplus
0005 extern "C" {
0006 #endif
0007
0008 PyAPI_DATA(PyTypeObject) PySeqIter_Type;
0009 PyAPI_DATA(PyTypeObject) PyCallIter_Type;
0010
0011 #define PySeqIter_Check(op) Py_IS_TYPE((op), &PySeqIter_Type)
0012
0013 PyAPI_FUNC(PyObject *) PySeqIter_New(PyObject *);
0014
0015
0016 #define PyCallIter_Check(op) Py_IS_TYPE((op), &PyCallIter_Type)
0017
0018 PyAPI_FUNC(PyObject *) PyCallIter_New(PyObject *, PyObject *);
0019
0020 #ifdef __cplusplus
0021 }
0022 #endif
0023 #endif
0024