summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio.rst
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2018-09-14 23:57:11 (GMT)
committerGitHub <noreply@github.com>2018-09-14 23:57:11 (GMT)
commit805e27eff65d51f7aea2c00ccbb4f5d44f4499f2 (patch)
tree1a41e7b052f4d0845c29a6c9bcf594f0d0cffe63 /Doc/library/asyncio.rst
parentafde1c1a05cc8a1e8adf6403c451f6708509a605 (diff)
downloadcpython-805e27eff65d51f7aea2c00ccbb4f5d44f4499f2.zip
cpython-805e27eff65d51f7aea2c00ccbb4f5d44f4499f2.tar.gz
cpython-805e27eff65d51f7aea2c00ccbb4f5d44f4499f2.tar.bz2
bpo-33649: Fix asyncio-dev (GH-9324)
Diffstat (limited to 'Doc/library/asyncio.rst')
-rw-r--r--Doc/library/asyncio.rst13
1 files changed, 3 insertions, 10 deletions
diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst
index 25daeb6..9f45f74 100644
--- a/Doc/library/asyncio.rst
+++ b/Doc/library/asyncio.rst
@@ -32,8 +32,9 @@ asyncio provides a set of **high-level** APIs to:
as well as **low-level** APIs for *library and framework developers* to:
* create and manage :ref:`event loops <asyncio-event-loop>`, which
- provide asynchronous APIs for networking, subprocesses, OS signals,
- etc;
+ provide asynchronous APIs for :meth:`networking <loop.create_server>`,
+ running :meth:`subprocesses <loop.subprocess_exec>`,
+ handling :meth:`OS signals <loop.add_signal_handler>`, etc;
* implement efficient protocols using
:ref:`transports <asyncio-transports-protocols>`;
@@ -75,11 +76,3 @@ Reference
asyncio-api-index.rst
asyncio-dev.rst
-
-
-.. seealso::
-
- The :mod:`asyncio` module was proposed in :PEP:`3156`.
- Since the acceptance of the PEP many new APIs were added and many
- original APIs were altered. The PEP should be treated as a
- historical document.