2002-03-30 04:57:12 -04:00
|
|
|
#ifndef Py_ITEROBJECT_H
|
|
|
|
#define Py_ITEROBJECT_H
|
2001-04-20 18:06:46 -03:00
|
|
|
/* Iterators (the basic kind, over a sequence) */
|
2002-03-30 04:57:12 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2001-04-20 18:06:46 -03:00
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_DATA(PyTypeObject) PySeqIter_Type;
|
2007-11-29 18:35:39 -04:00
|
|
|
PyAPI_DATA(PyTypeObject) PyCallIter_Type;
|
|
|
|
PyAPI_DATA(PyTypeObject) PyCmpWrapper_Type;
|
2001-04-20 18:06:46 -03:00
|
|
|
|
2007-12-18 22:45:37 -04:00
|
|
|
#define PySeqIter_Check(op) (Py_TYPE(op) == &PySeqIter_Type)
|
2001-04-20 18:06:46 -03:00
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PySeqIter_New(PyObject *);
|
2001-04-20 18:06:46 -03:00
|
|
|
|
|
|
|
|
2007-12-18 22:45:37 -04:00
|
|
|
#define PyCallIter_Check(op) (Py_TYPE(op) == &PyCallIter_Type)
|
2001-04-20 18:06:46 -03:00
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyCallIter_New(PyObject *, PyObject *);
|
2006-08-25 20:26:40 -03:00
|
|
|
|
2002-03-30 04:57:12 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_ITEROBJECT_H */
|
|
|
|
|