From: Guido van Rossum Date: Thu, 3 Nov 2016 21:17:25 +0000 (-0700) Subject: Issue #26980: Improve docs for create_unix_connection(). By Mariatta. X-Git-Tag: v3.6.0b4~159^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e80eeb22dde9740dada6d750e4dcb1712d070ab;p=python Issue #26980: Improve docs for create_unix_connection(). By Mariatta. --- diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index ba52d9bed3..cf2f3d630c 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -380,6 +380,10 @@ Creating connections establish the connection in the background. When successful, the coroutine returns a ``(transport, protocol)`` pair. + *path* is the name of a UNIX domain socket, and is required unless a *sock* + parameter is specified. Abstract UNIX sockets, :class:`str`, and + :class:`bytes` paths are supported. + See the :meth:`AbstractEventLoop.create_connection` method for parameters. Availability: UNIX.