Lines Matching refs:aws
320 .. awaitablefunction:: gather(\*aws, loop=None, return_exceptions=False)
322 Run :ref:`awaitable objects <asyncio-awaitables>` in the *aws*
325 If any awaitable in *aws* is a coroutine, it is automatically
330 corresponds to the order of awaitables in *aws*.
334 awaits on ``gather()``. Other awaitables in the *aws* sequence
343 If any Task or Future from the *aws* sequence is *cancelled*, it is
492 .. coroutinefunction:: wait(aws, \*, loop=None, timeout=None,\
495 Run :ref:`awaitable objects <asyncio-awaitables>` in the *aws*
503 done, pending = await asyncio.wait(aws)
538 If any awaitable in *aws* is a coroutine, it is automatically
580 .. function:: as_completed(aws, \*, loop=None, timeout=None)
582 Run :ref:`awaitable objects <asyncio-awaitables>` in the *aws*
595 for f in as_completed(aws):