Staging
v0.5.1
https://github.com/python/cpython
Revision 74105f142406727c06304bf4a7ac9a3385aaa0fa authored by Anthony Baxter on 09 March 2005, 11:45:49 UTC, committed by Anthony Baxter on 09 March 2005, 11:45:49 UTC
1 parent 1e90144
Raw File
Tip revision: 74105f142406727c06304bf4a7ac9a3385aaa0fa authored by Anthony Baxter on 09 March 2005, 11:45:49 UTC
tabstop delenda est
Tip revision: 74105f1
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