diff options
| author | Yury Selivanov <yury@magic.io> | 2018-09-14 23:57:11 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-14 23:57:11 (GMT) |
| commit | 805e27eff65d51f7aea2c00ccbb4f5d44f4499f2 (patch) | |
| tree | 1a41e7b052f4d0845c29a6c9bcf594f0d0cffe63 /Doc/library/asyncio-api-index.rst | |
| parent | afde1c1a05cc8a1e8adf6403c451f6708509a605 (diff) | |
| download | cpython-805e27eff65d51f7aea2c00ccbb4f5d44f4499f2.zip cpython-805e27eff65d51f7aea2c00ccbb4f5d44f4499f2.tar.gz cpython-805e27eff65d51f7aea2c00ccbb4f5d44f4499f2.tar.bz2 | |
bpo-33649: Fix asyncio-dev (GH-9324)
Diffstat (limited to 'Doc/library/asyncio-api-index.rst')
| -rw-r--r-- | Doc/library/asyncio-api-index.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/asyncio-api-index.rst b/Doc/library/asyncio-api-index.rst index a4d0e1b..dc69100 100644 --- a/Doc/library/asyncio-api-index.rst +++ b/Doc/library/asyncio-api-index.rst @@ -15,7 +15,7 @@ Utilities to run asyncio programs, create Tasks, and await on multiple things with timeouts. .. list-table:: - :widths: 30 70 + :widths: 50 50 * - :func:`run` - Create event loop, run a coroutine, close the loop. @@ -71,7 +71,7 @@ implement connection pools, and pub/sub patterns. .. list-table:: - :widths: 30 70 + :widths: 50 50 * - :class:`Queue` - A FIFO queue. @@ -97,7 +97,7 @@ Subprocesses Utilities to spawn subprocesses and run shell commands. .. list-table:: - :widths: 30 70 + :widths: 50 50 * - ``await`` :func:`create_subprocess_exec` - Create a subprocess. @@ -120,7 +120,7 @@ Streams High-level APIs to work with network IO. .. list-table:: - :widths: 30 70 + :widths: 50 50 * - ``await`` :func:`open_connection` - Establish a TCP connection. @@ -155,7 +155,7 @@ Synchronization Threading-like synchronization primitives that can be used in Tasks. .. list-table:: - :widths: 30 70 + :widths: 50 50 * - :class:`Lock` - A mutex lock. @@ -185,7 +185,7 @@ Exceptions ========== .. list-table:: - :widths: 30 70 + :widths: 50 50 * - :exc:`asyncio.TimeoutError` |
