Staging
v0.8.1
https://github.com/python/cpython
Revision 126ba449b6df4ff7b2be8578d41205ac7341d5b9 authored by Anthony Baxter on 10 October 2006, 16:44:16 UTC, committed by Anthony Baxter on 10 October 2006, 16:44:16 UTC
1 parent 8bc45db
Raw File
Tip revision: 126ba449b6df4ff7b2be8578d41205ac7341d5b9 authored by Anthony Baxter on 10 October 2006, 16:44:16 UTC
preparing for 2.4.4c1
Tip revision: 126ba44
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