Unlike :func:`~asyncio.wait_for`, ``wait()`` does not cancel the
futures when a timeout occurs.
+ If ``wait()`` is cancelled, the futures in *aws* are not cancelled
+ and continue to run.
+
.. versionchanged:: 3.10
Removed the *loop* parameter.
are done. This is raised by the ``async for`` loop during asynchronous
iteration or by the coroutines yielded during plain iteration.
+ ``as_completed()`` does not cancel the tasks running the supplied
+ awaitables: if a timeout occurs or the iteration is cancelled, the
+ remaining tasks continue to run.
+
.. versionchanged:: 3.10
Removed the *loop* parameter.