Staging
v0.5.1
https://github.com/python/cpython
Revision 87b99c7f0e194349e0f30b4d6facb3f3a311ba7e authored by Thomas Heller on 20 January 2005, 19:28:44 UTC, committed by Thomas Heller on 20 January 2005, 19:28:44 UTC
the version number.  For the distutils version numbering scheme, see
http://mail.python.org/pipermail/distutils-sig/2005-January/004368.html
1 parent 5fc22ec
Raw File
Tip revision: 87b99c7f0e194349e0f30b4d6facb3f3a311ba7e authored by Thomas Heller on 20 January 2005, 19:28:44 UTC
At least one bug has been fixed in distutils, so increment the last part of
Tip revision: 87b99c7
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