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 fe8f90a commit 426135bCopy full SHA for 426135b
1 file changed
Doc/glossary.rst
@@ -123,10 +123,10 @@ Glossary
123
:meth:`__aiter__` method. Introduced by :pep:`492`.
124
125
asynchronous iterator
126
- An object that implements :meth:`__aiter__` and :meth:`__anext__`
+ An object that implements the :meth:`__aiter__` and :meth:`__anext__`
127
methods. ``__anext__`` must return an :term:`awaitable` object.
128
- :keyword:`async for` resolves awaitable returned from asynchronous
129
- iterator's :meth:`__anext__` method until it raises
+ :keyword:`async for` resolves the awaitables returned by an asynchronous
+ iterator's :meth:`__anext__` method until it raises a
130
:exc:`StopAsyncIteration` exception. Introduced by :pep:`492`.
131
132
attribute
0 commit comments