Issue #26980: Improve docs for create_unix_connection(). By Mariatta. (3.6->3.7)

This commit is contained in:
Guido van Rossum 2016-11-03 14:18:32 -07:00
commit 7229f33ef3
1 changed files with 4 additions and 0 deletions

View File

@ -381,6 +381,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.