Staging
v0.5.1
https://github.com/python/cpython
Revision 26da920001941b0cd74981772924a6aab4d2881a authored by Benjamin Peterson on 21 February 2012, 16:08:50 UTC, committed by Benjamin Peterson on 21 February 2012, 16:08:50 UTC
1 parent b69fa1f
Raw File
Tip revision: 26da920001941b0cd74981772924a6aab4d2881a authored by Benjamin Peterson on 21 February 2012, 16:08:50 UTC
ensure no one tries to hash things before the random seed is found
Tip revision: 26da920
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) (Py_TYPE(op) == &PySeqIter_Type)

PyAPI_FUNC(PyObject *) PySeqIter_New(PyObject *);

PyAPI_DATA(PyTypeObject) PyCallIter_Type;

#define PyCallIter_Check(op) (Py_TYPE(op) == &PyCallIter_Type)

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

back to top