From: Eli Bendersky Date: Mon, 20 Jan 2014 15:51:31 +0000 (-0800) Subject: Formatting & rst link markup fixes X-Git-Tag: v3.4.0b3~86 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3245e79b823d9060b03666148a1b937b118259cb;p=python Formatting & rst link markup fixes --- diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index 00e4250590..4672e58776 100644 --- a/Doc/library/asyncio-protocol.rst +++ b/Doc/library/asyncio-protocol.rst @@ -532,10 +532,11 @@ Network functions .. 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