]> granicus.if.org Git - python/commitdiff
Issue #26980: Improve docs for create_unix_connection(). By Mariatta.
authorGuido van Rossum <guido@python.org>
Thu, 3 Nov 2016 21:17:25 +0000 (14:17 -0700)
committerGuido van Rossum <guido@python.org>
Thu, 3 Nov 2016 21:17:25 +0000 (14:17 -0700)
Doc/library/asyncio-eventloop.rst

index ba52d9bed3d5784b796306d266a33c30dc1fab72..cf2f3d630c863e0c225510017add4398f148aa78 100644 (file)
@@ -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.