[Python-checkins] cpython (3.5): Issue #26980: Improve docs for create_unix_connection(). By Mariatta.

guido.van.rossum python-checkins at python.org
Thu Nov 3 17:18:47 EDT 2016


https://hg.python.org/cpython/rev/b97b0201c2f4
changeset:   104890:b97b0201c2f4
branch:      3.5
parent:      104887:89f7386104e2
user:        Guido van Rossum <guido at python.org>
date:        Thu Nov 03 14:17:25 2016 -0700
summary:
  Issue #26980: Improve docs for create_unix_connection(). By Mariatta.

files:
  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
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -380,6 +380,10 @@
    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.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list