[Python-checkins] cpython: Formatting & rst link markup fixes

eli.bendersky python-checkins at python.org
Mon Jan 20 16:51:26 CET 2014


http://hg.python.org/cpython/rev/cafdd5973974
changeset:   88584:cafdd5973974
user:        Eli Bendersky <eliben at gmail.com>
date:        Mon Jan 20 07:51:31 2014 -0800
summary:
  Formatting & rst link markup fixes

files:
  Doc/library/asyncio-protocol.rst |  7 ++++---
  1 files changed, 4 insertions(+), 3 deletions(-)


diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -532,10 +532,11 @@
 
 .. function:: open_connection(host=None, port=None, *, loop=None, limit=_DEFAULT_LIMIT, **kwds)
 
-   A wrapper for create_connection() returning a (reader, writer) pair.
+   A wrapper for :meth:`~BaseEventLoop.create_connection()` returning a (reader,
+   writer) pair.
 
-   The reader returned is a StreamReader instance; the writer is a
-   :class:`Transport`.
+   The reader returned is a :class:`StreamReader` instance; the writer is a
+   transport.
 
    The arguments are all the usual arguments to
    :meth:`BaseEventLoop.create_connection` except *protocol_factory*; most

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


More information about the Python-checkins mailing list