From 9e80eeb22dde9740dada6d750e4dcb1712d070ab Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 3 Nov 2016 14:17:25 -0700 Subject: [PATCH] Issue #26980: Improve docs for create_unix_connection(). By Mariatta. --- Doc/library/asyncio-eventloop.rst | 4 ++++ 1 file changed, 4 insertions(+) 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. -- 2.40.0