blob: 3931bb915929576012f3d4e2d180c0a4333c8975 [file] [log] [blame]
Georg Brandlf6842722008-01-19 22:08:21 +00001.. highlightlang:: c
2
3.. _iterator-objects:
4
5Iterator Objects
6----------------
7
8Python provides two general-purpose iterator objects. The first, a sequence
9iterator, works with an arbitrary sequence supporting the :meth:`__getitem__`
10method. The second works with a callable object and a sentinel value, calling
11the callable for each item in the sequence, and ending the iteration when the
12sentinel value is returned.
13
14
Sandro Tosi98ed08f2012-01-14 16:42:02 +010015.. c:var:: PyTypeObject PySeqIter_Type
Georg Brandlf6842722008-01-19 22:08:21 +000016
Sandro Tosi98ed08f2012-01-14 16:42:02 +010017 Type object for iterator objects returned by :c:func:`PySeqIter_New` and the
Georg Brandlf6842722008-01-19 22:08:21 +000018 one-argument form of the :func:`iter` built-in function for built-in sequence
19 types.
20
21 .. versionadded:: 2.2
22
23
Sandro Tosi98ed08f2012-01-14 16:42:02 +010024.. c:function:: int PySeqIter_Check(op)
Georg Brandlf6842722008-01-19 22:08:21 +000025
Sandro Tosi98ed08f2012-01-14 16:42:02 +010026 Return true if the type of *op* is :c:data:`PySeqIter_Type`.
Georg Brandlf6842722008-01-19 22:08:21 +000027
28 .. versionadded:: 2.2
29
30
Sandro Tosi98ed08f2012-01-14 16:42:02 +010031.. c:function:: PyObject* PySeqIter_New(PyObject *seq)
Georg Brandlf6842722008-01-19 22:08:21 +000032
33 Return an iterator that works with a general sequence object, *seq*. The
34 iteration ends when the sequence raises :exc:`IndexError` for the subscripting
35 operation.
36
37 .. versionadded:: 2.2
38
39
Sandro Tosi98ed08f2012-01-14 16:42:02 +010040.. c:var:: PyTypeObject PyCallIter_Type
Georg Brandlf6842722008-01-19 22:08:21 +000041
Sandro Tosi98ed08f2012-01-14 16:42:02 +010042 Type object for iterator objects returned by :c:func:`PyCallIter_New` and the
Georg Brandlf6842722008-01-19 22:08:21 +000043 two-argument form of the :func:`iter` built-in function.
44
45 .. versionadded:: 2.2
46
47
Sandro Tosi98ed08f2012-01-14 16:42:02 +010048.. c:function:: int PyCallIter_Check(op)
Georg Brandlf6842722008-01-19 22:08:21 +000049
Sandro Tosi98ed08f2012-01-14 16:42:02 +010050 Return true if the type of *op* is :c:data:`PyCallIter_Type`.
Georg Brandlf6842722008-01-19 22:08:21 +000051
52 .. versionadded:: 2.2
53
54
Sandro Tosi98ed08f2012-01-14 16:42:02 +010055.. c:function:: PyObject* PyCallIter_New(PyObject *callable, PyObject *sentinel)
Georg Brandlf6842722008-01-19 22:08:21 +000056
57 Return a new iterator. The first parameter, *callable*, can be any Python
58 callable object that can be called with no parameters; each call to it should
59 return the next item in the iteration. When *callable* returns a value equal to
60 *sentinel*, the iteration will be terminated.
61
62 .. versionadded:: 2.2