mirror of
https://github.com/python/cpython.git
synced 2026-01-03 22:12:27 +00:00
[3.11] gh-101100: Fix sphinx warnings in asyncio-task.rst (GH-114469) (#114518)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
b39a314eda
commit
208db89fe6
2 changed files with 15 additions and 17 deletions
|
|
@ -775,23 +775,22 @@ Waiting Primitives
|
|||
*return_when* indicates when this function should return. It must
|
||||
be one of the following constants:
|
||||
|
||||
.. tabularcolumns:: |l|L|
|
||||
.. list-table::
|
||||
:header-rows: 1
|
||||
|
||||
+-----------------------------+----------------------------------------+
|
||||
| Constant | Description |
|
||||
+=============================+========================================+
|
||||
| :const:`FIRST_COMPLETED` | The function will return when any |
|
||||
| | future finishes or is cancelled. |
|
||||
+-----------------------------+----------------------------------------+
|
||||
| :const:`FIRST_EXCEPTION` | The function will return when any |
|
||||
| | future finishes by raising an |
|
||||
| | exception. If no future raises an |
|
||||
| | exception then it is equivalent to |
|
||||
| | :const:`ALL_COMPLETED`. |
|
||||
+-----------------------------+----------------------------------------+
|
||||
| :const:`ALL_COMPLETED` | The function will return when all |
|
||||
| | futures finish or are cancelled. |
|
||||
+-----------------------------+----------------------------------------+
|
||||
* - Constant
|
||||
- Description
|
||||
|
||||
* - .. data:: FIRST_COMPLETED
|
||||
- The function will return when any future finishes or is cancelled.
|
||||
|
||||
* - .. data:: FIRST_EXCEPTION
|
||||
- The function will return when any future finishes by raising an
|
||||
exception. If no future raises an exception
|
||||
then it is equivalent to :const:`ALL_COMPLETED`.
|
||||
|
||||
* - .. data:: ALL_COMPLETED
|
||||
- The function will return when all futures finish or are cancelled.
|
||||
|
||||
Unlike :func:`~asyncio.wait_for`, ``wait()`` does not cancel the
|
||||
futures when a timeout occurs.
|
||||
|
|
|
|||
|
|
@ -27,7 +27,6 @@ Doc/library/ast.rst
|
|||
Doc/library/asyncio-extending.rst
|
||||
Doc/library/asyncio-policy.rst
|
||||
Doc/library/asyncio-subprocess.rst
|
||||
Doc/library/asyncio-task.rst
|
||||
Doc/library/bdb.rst
|
||||
Doc/library/collections.rst
|
||||
Doc/library/concurrent.futures.rst
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue