[Python-checkins] cpython: ayncio: replace the disclamer with a seealso section

victor.stinner python-checkins at python.org
Tue Dec 3 15:06:08 CET 2013


http://hg.python.org/cpython/rev/60d90f8ad38d
changeset:   87742:60d90f8ad38d
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Dec 03 15:04:36 2013 +0100
summary:
  ayncio: replace the disclamer with a seealso section

files:
  Doc/library/asyncio.rst |  15 ++++++---------
  1 files changed, 6 insertions(+), 9 deletions(-)


diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst
--- 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 @@
   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 @@
    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`.
+

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list