Staging
v0.8.1
https://github.com/python/cpython
Revision 9f839d5b23eff11af3d124d3f38d917cdac6830d authored by Anthony Baxter on 23 October 2006, 15:27:22 UTC, committed by Anthony Baxter on 23 October 2006, 15:27:22 UTC
1 parent 1785d3f
Raw File
Tip revision: 9f839d5b23eff11af3d124d3f38d917cdac6830d authored by Anthony Baxter on 23 October 2006, 15:27:22 UTC
preparing for 2.3.6c1
Tip revision: 9f839d5
iterobject.h
#ifndef Py_ITEROBJECT_H
#define Py_ITEROBJECT_H
/* Iterators (the basic kind, over a sequence) */
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PySeqIter_Type;

#define PySeqIter_Check(op) ((op)->ob_type == &PySeqIter_Type)

PyAPI_FUNC(PyObject *) PySeqIter_New(PyObject *);

PyAPI_DATA(PyTypeObject) PyCallIter_Type;

#define PyCallIter_Check(op) ((op)->ob_type == &PyCallIter_Type)

PyAPI_FUNC(PyObject *) PyCallIter_New(PyObject *, PyObject *);
#ifdef __cplusplus
}
#endif
#endif /* !Py_ITEROBJECT_H */

back to top