diff options
Diffstat (limited to 'Doc/library/asyncio.rst')
-rw-r--r-- | Doc/library/asyncio.rst | 13 |
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. |