Staging
v0.5.1
https://github.com/python/cpython
Revision 2872e8a654dbabaadbdeb513a962b0a23533dfe3 authored by Fred Drake on 06 September 2001, 19:35:02 UTC, committed by Fred Drake on 06 September 2001, 19:35:02 UTC
1 parent c93cf67
Raw File
Tip revision: 2872e8a654dbabaadbdeb513a962b0a23533dfe3 authored by Fred Drake on 06 September 2001, 19:35:02 UTC
Do not rebuild html-$(RELEASE).tar every time we need to use it.
Tip revision: 2872e8a
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