Lines Matching refs:awaitable
650 will return an :term:`awaitable` which when awaited
2554 An :term:`awaitable` object generally implements an :meth:`__await__` method.
2556 are awaitable.
2562 are also awaitable, but they do not implement :meth:`__await__`.
2567 :term:`awaitable` objects. For instance, :class:`asyncio.Future` implements
2572 .. seealso:: :pep:`492` for additional information about awaitable objects.
2580 :term:`Coroutine` objects are :term:`awaitable` objects.
2646 Must return an *awaitable* resulting in a next value of the iterator. Should
2667 Prior to Python 3.7, ``__aiter__`` could return an *awaitable*
2689 difference that it must return an *awaitable*.
2694 difference that it must return an *awaitable*.