diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-12-03 14:04:36 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-12-03 14:04:36 (GMT) |
commit | 85a2be7da75875e8c2b7c0ad9f1967f053a4112b (patch) | |
tree | b1e2ee44269854d62a604c665b421cbde48e7f81 /Doc/library | |
parent | 15faa9c8ad1833cea964281e70085a603365a75a (diff) | |
download | cpython-85a2be7da75875e8c2b7c0ad9f1967f053a4112b.zip cpython-85a2be7da75875e8c2b7c0ad9f1967f053a4112b.tar.gz cpython-85a2be7da75875e8c2b7c0ad9f1967f053a4112b.tar.bz2 |
ayncio: replace the disclamer with a seealso section
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/asyncio.rst | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst index 62de445..76e26c0 100644 --- a/Doc/library/asyncio.rst +++ b/Doc/library/asyncio.rst @@ -13,7 +13,6 @@ This module provides infrastructure for writing single-threaded concurrent 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 @@ -40,14 +39,7 @@ Here is a more detailed list of the package contents: you absolutely, positively have to use a library that makes blocking I/O calls. - -Disclaimer -========== - -Full documentation is not yet ready; we hope to have it written -before Python 3.4 leaves beta. Until then, the best reference is -:PEP:`3156`. For a motivational primer on transports and protocols, -see :PEP:`3153`. +Table of content: .. toctree:: :maxdepth: 3 @@ -58,3 +50,8 @@ see :PEP:`3153`. asyncio-protocol.rst asyncio-sync.rst +.. seealso:: + + The :mod:`asyncio` module was designed in the :PEP:`3156`. For a + motivational primer on transports and protocols, see :PEP:`3153`. + |