mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Issue #23219: Update asyncio.wait_for() documentation
the wait is cancelled, the future *fut* is now also cancelled.
This commit is contained in:
parent
807743403d
commit
72dcb0a765
1 changed files with 5 additions and 0 deletions
|
@ -644,7 +644,12 @@ Task functions
|
|||
cancels the task and raises :exc:`asyncio.TimeoutError`. To avoid the task
|
||||
cancellation, wrap it in :func:`shield`.
|
||||
|
||||
If the wait is cancelled, the future *fut* is also cancelled.
|
||||
|
||||
This function is a :ref:`coroutine <coroutine>`, usage::
|
||||
|
||||
result = yield from asyncio.wait_for(fut, 60.0)
|
||||
|
||||
.. versionchanged:: 3.4.3
|
||||
If the wait is cancelled, the future *fut* is now also cancelled.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue