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-dev.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-dev.rst')
-rw-r--r-- | Doc/library/asyncio-dev.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index d89d350..4819108 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -43,7 +43,7 @@ blocks for 1 second, other tasks are delayed by 1 second which can have an important impact on reactivity. For networking and subprocesses, the :mod:`asyncio` module provides high-level -APIs like :ref:`protocols <protocol>`. +APIs like :ref:`protocols <asyncio-protocol>`. An executor can be used to run a task in a different thread or even in a different process, to not block the thread of the event loop. See the |