diff options
author | Guido van Rossum <guido@python.org> | 2016-11-03 21:18:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2016-11-03 21:18:04 (GMT) |
commit | 4948a462e82fce85e94e12bf47b7a14aef2dc466 (patch) | |
tree | 1cd4861c8ed73f0d27203805f570bf666e1a0b8f | |
parent | 5f548a24a48838bc9922527e33bbec955483c13c (diff) | |
parent | 9e80eeb22dde9740dada6d750e4dcb1712d070ab (diff) | |
download | cpython-4948a462e82fce85e94e12bf47b7a14aef2dc466.zip cpython-4948a462e82fce85e94e12bf47b7a14aef2dc466.tar.gz cpython-4948a462e82fce85e94e12bf47b7a14aef2dc466.tar.bz2 |
Issue #26980: Improve docs for create_unix_connection(). By Mariatta. (3.5->3.6)
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index ed1d773..ab5bc31 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -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. |