[Python-checkins] Add versionchanged in create_datagram_endpoint doc (GH-4697)

Miss Islington (bot) webhook-mailer at python.org
Mon May 14 16:12:42 EDT 2018


https://github.com/python/cpython/commit/c6348cf395a89adf019d0d65e3488aa23395b7f1
commit: c6348cf395a89adf019d0d65e3488aa23395b7f1
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-05-14T13:12:38-07:00
summary:

Add versionchanged in create_datagram_endpoint doc (GH-4697)


Most of the parameters were added in 3.4.4 (b9bf913ab32), but this
change was not documented
(cherry picked from commit 0ded580403d470651a963b0915c7a52de627c45e)

Co-authored-by: Romuald Brunet <romuald at chivil.com>

files:
M Doc/library/asyncio-eventloop.rst

diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index ca8055bd162f..2770fa6f8acd 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -393,6 +393,9 @@ Creating connections
    See :ref:`UDP echo client protocol <asyncio-udp-echo-client-protocol>` and
    :ref:`UDP echo server protocol <asyncio-udp-echo-server-protocol>` examples.
 
+   .. versionchanged:: 3.4.4
+      The *family*, *proto*, *flags*, *reuse_address*, *reuse_port,
+      *allow_broadcast*, and *sock* parameters were added.
 
 .. coroutinemethod:: AbstractEventLoop.create_unix_connection(protocol_factory, path=None, \*, ssl=None, sock=None, server_hostname=None, ssl_handshake_timeout=None)
 



More information about the Python-checkins mailing list