Staging
v0.5.1
Revision cb7f6544f09d38eb73f9894426f8cca16b9bf5b1 authored by cvs2svn on 26 March 2002, 13:47:16 UTC, committed by cvs2svn on 26 March 2002, 13:47:16 UTC
1 parent 8b9a781
Raw File
iterobject.h
/* Iterators (the basic kind, over a sequence) */

extern DL_IMPORT(PyTypeObject) PySeqIter_Type;

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

extern DL_IMPORT(PyObject *) PySeqIter_New(PyObject *);

extern DL_IMPORT(PyTypeObject) PyCallIter_Type;

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

extern DL_IMPORT(PyObject *) PyCallIter_New(PyObject *, PyObject *);
back to top