Lines Matching refs:aws
302 .. awaitablefunction:: gather(\*aws, loop=None, return_exceptions=False)
304 Run :ref:`awaitable objects <asyncio-awaitables>` in the *aws*
307 If any awaitable in *aws* is a coroutine, it is automatically
312 corresponds to the order of awaitables in *aws*.
316 awaits on ``gather()``. Other awaitables in the *aws* sequence
325 If any Task or Future from the *aws* sequence is *cancelled*, it is
468 .. coroutinefunction:: wait(aws, \*, loop=None, timeout=None,\
471 Run :ref:`awaitable objects <asyncio-awaitables>` in the *aws*
475 If any awaitable in *aws* is a coroutine, it is automatically
484 done, pending = await asyncio.wait(aws)
551 .. function:: as_completed(aws, \*, loop=None, timeout=None)
553 Run :ref:`awaitable objects <asyncio-awaitables>` in the *aws*
563 for f in as_completed(aws):