@@ -50,3 +50,32 @@ sentinel value is returned.
5050 callable object that can be called with no parameters; each call to it should
5151 return the next item in the iteration. When *callable * returns a value equal to
5252 *sentinel *, the iteration will be terminated.
53+
54+
55+ Other Iterator Objects
56+ ^^^^^^^^^^^^^^^^^^^^^^
57+
58+ .. c :var :: PyTypeObject PyByteArrayIter_Type
59+ .. c :var :: PyTypeObject PyBytesIter_Type
60+ .. c :var :: PyTypeObject PyListIter_Type
61+ .. c :var :: PyTypeObject PyListRevIter_Type
62+ .. c :var :: PyTypeObject PySetIter_Type
63+ .. c :var :: PyTypeObject PyTupleIter_Type
64+ .. c :var :: PyTypeObject PyRangeIter_Type
65+ .. c :var :: PyTypeObject PyLongRangeIter_Type
66+ .. c :var :: PyTypeObject PyDictIterKey_Type
67+ .. c :var :: PyTypeObject PyDictRevIterKey_Type
68+ .. c :var :: PyTypeObject PyDictIterValue_Type
69+ .. c :var :: PyTypeObject PyDictRevIterValue_Type
70+ .. c :var :: PyTypeObject PyDictIterItem_Type
71+ .. c :var :: PyTypeObject PyDictRevIterItem_Type
72+
73+ Type objects for iterators of various built-in objects.
74+
75+ Do not create instances of these directly; prefer calling
76+ :c:func: `PyObject_GetIter ` instead.
77+
78+ Note that there is no guarantee that a given built-in type uses a given iterator
79+ type. For example, iterating over :class: `range ` will use one of two iterator
80+ types depending on the size of the range. Other types may start using a
81+ similar scheme in the future, without warning.
0 commit comments