Staging
v0.5.1
https://github.com/python/cpython
Revision c0afb7fa0ebd1c0e95c0760bbe75a99a8dd12ea6 authored by Matti Picus on 07 December 2020, 17:33:20 UTC, committed by GitHub on 07 December 2020, 17:33:20 UTC
1 parent 0ef96c2
Raw File
Tip revision: c0afb7fa0ebd1c0e95c0760bbe75a99a8dd12ea6 authored by Matti Picus on 07 December 2020, 17:33:20 UTC
bpo-39825: Fixes sysconfig.get_config_var('EXT_SUFFIX') on Windows to match distutils (GH-22088)
Tip revision: c0afb7f
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;
PyAPI_DATA(PyTypeObject) PyCallIter_Type;

#define PySeqIter_Check(op) Py_IS_TYPE(op, &PySeqIter_Type)

PyAPI_FUNC(PyObject *) PySeqIter_New(PyObject *);


#define PyCallIter_Check(op) Py_IS_TYPE(op, &PyCallIter_Type)

PyAPI_FUNC(PyObject *) PyCallIter_New(PyObject *, PyObject *);

#ifdef __cplusplus
}
#endif
#endif /* !Py_ITEROBJECT_H */

back to top