Staging
v0.5.1
https://github.com/python/cpython
Revision a65e2afe804743332b37234d66c7fe0789da760d authored by Ezio Melotti on 02 August 2010, 19:56:05 UTC, committed by Ezio Melotti on 02 August 2010, 19:56:05 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r79165 | florent.xicluna | 2010-03-21 03:14:24 +0200 (Sun, 21 Mar 2010) | 2 lines

  #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper.
........
1 parent edabc7b
Raw File
Tip revision: a65e2afe804743332b37234d66c7fe0789da760d authored by Ezio Melotti on 02 August 2010, 19:56:05 UTC
Merged revisions 79165 via svnmerge from
Tip revision: a65e2af
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