Staging
v0.8.1
https://github.com/python/cpython
Revision c101d1a88a8e0b0cec479307b4e0ae6866958a49 authored by Miss Islington (bot) on 18 June 2019, 09:45:10 UTC, committed by Ned Deily on 18 June 2019, 09:45:10 UTC
(cherry picked from commit a514f782b822bd7bca7c8d78be7bd53bc25c1908)

Co-authored-by: Ned Deily <nad@python.org>
1 parent 0f3abbc
Raw File
Tip revision: c101d1a88a8e0b0cec479307b4e0ae6866958a49 authored by Miss Islington (bot) on 18 June 2019, 09:45:10 UTC
bpo-35031: also disable TLS 1.3 for test_start_tls_server_1 on macOS (GH-14188) (GH-14192)
Tip revision: c101d1a
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;
PyAPI_DATA(PyTypeObject) PyCmpWrapper_Type;

#define PySeqIter_Check(op) (Py_TYPE(op) == &PySeqIter_Type)

PyAPI_FUNC(PyObject *) PySeqIter_New(PyObject *);


#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