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

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


https://hg.python.org/cpython/rev/ddbba4739ef4
changeset:   104891:ddbba4739ef4
branch:      3.6
parent:      104888:c4319c0d0131
parent:      104890:b97b0201c2f4
user:        Guido van Rossum <guido at python.org>
date:        Thu Nov 03 14:18:04 2016 -0700
summary:
  Issue #26980: Improve docs for create_unix_connection(). By Mariatta. (3.5->3.6)

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