diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-02 14:03:02 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-02 14:03:02 (GMT) |
commit | 9592edb834cdbf3d222f65b8c37e431c87be1792 (patch) | |
tree | b98437c1a2e097c1fdf15a56c59b116bca0edcb4 /Doc/library/asyncio.rst | |
parent | 2315779c5ec23145ed2420f94b05de700cf65c1f (diff) | |
download | cpython-9592edb834cdbf3d222f65b8c37e431c87be1792.zip cpython-9592edb834cdbf3d222f65b8c37e431c87be1792.tar.gz cpython-9592edb834cdbf3d222f65b8c37e431c87be1792.tar.bz2 |
asyncio doc: add "asyncio-" prefix to references
Diffstat (limited to 'Doc/library/asyncio.rst')
-rw-r--r-- | Doc/library/asyncio.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst index 64e751b..9787f19 100644 --- a/Doc/library/asyncio.rst +++ b/Doc/library/asyncio.rst @@ -15,10 +15,10 @@ code using coroutines, multiplexing I/O access over sockets and other resources, running network clients and servers, and other related primitives. Here is a more detailed list of the package contents: -* a pluggable :ref:`event loop <event-loop>` with various system-specific +* a pluggable :ref:`event loop <asyncio-event-loop>` with various system-specific implementations; -* :ref:`transport <transport>` and :ref:`protocol <protocol>` abstractions +* :ref:`transport <asyncio-transport>` and :ref:`protocol <asyncio-protocol>` abstractions (similar to those in `Twisted <http://twistedmatrix.com/>`_); * concrete support for TCP, UDP, SSL, subprocess pipes, delayed calls, and @@ -32,7 +32,7 @@ Here is a more detailed list of the package contents: * cancellation support for Futures and coroutines; -* :ref:`synchronization primitives <sync>` for use between coroutines in +* :ref:`synchronization primitives <asyncio-sync>` for use between coroutines in a single thread, mimicking those in the :mod:`threading` module; * an interface for passing work off to a threadpool, for times when |