Lines Matching refs:awaitable
627 :term:`awaitable` object, and the execution starts when this object
679 Returns an awaitable which when run starts to execute the asynchronous
683 the returned awaitable, which when run will continue to the next yield
687 yielding another value, the awaitable instead raises an
696 Returns an awaitable which when run resumes the execution of the
700 The awaitable returned by the :meth:`asend` method will return the next
711 Returns an awaitable that raises an exception of type ``type`` at the point
716 raised by the awaitable.
718 raises a different exception, then when the awaitable is run that exception
719 propagates to the caller of the awaitable.
726 Returns an awaitable that when run will throw a :exc:`GeneratorExit` into
730 then the returned awaitable will raise a :exc:`StopIteration` exception.
734 by the awaitable. If the asynchronous generator raises any other exception,
735 it is propagated to the caller of the awaitable. If the asynchronous
737 further calls to :meth:`aclose` will return an awaitable that does nothing.
1087 Suspend the execution of :term:`coroutine` on an :term:`awaitable` object.