We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2902970 commit 8d63104Copy full SHA for 8d63104
Doc/c-api/list.rst
@@ -181,3 +181,18 @@ List Objects
181
182
Return a new tuple object containing the contents of *list*; equivalent to
183
``tuple(list)``.
184
+
185
+List Iterators
186
+^^^^^^^^^^^^^^
187
188
189
+.. c:var:: PyTypeObject PyListIter_Type
190
191
+ Type object for an iterator over a :class:`list` object. Instances
192
+ of this object are returned by :meth:`!bytes.__iter__`.
193
194
195
+.. c:var:: PyTypeObject PyListRevIter_Type
196
197
+ Type object for a reversed iterator over a :class:`list` object.
198
+ Instances of this object are returned by :meth:`!bytes.__reversed__`.
0 commit comments