[Python-checkins] bpo-32105: add asyncio.BaseEventLoop.connect_accepted_socket versionadded to documentation. (#4491)

Yury Selivanov webhook-mailer at python.org
Tue Nov 21 11:06:29 EST 2017


https://github.com/python/cpython/commit/431665bf1971e66c51f59abf0693f700ff7919e8
commit: 431665bf1971e66c51f59abf0693f700ff7919e8
branch: master
author: AraHaan <seandhunt_7 at yahoo.com>
committer: Yury Selivanov <yury at magic.io>
date: 2017-11-21T11:06:26-05:00
summary:

bpo-32105: add asyncio.BaseEventLoop.connect_accepted_socket versionadded to documentation. (#4491)

files:
A Misc/NEWS.d/next/Documentation/2017-11-21-10-54-16.bpo-32105.91mhWm.rst
M Doc/library/asyncio-eventloop.rst

diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index dd75a23ae4e..1919b10948b 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -513,6 +513,9 @@ Creating listening connections
    This method is a :ref:`coroutine <coroutine>`.  When completed, the
    coroutine returns a ``(transport, protocol)`` pair.
 
+   .. versionadded:: 3.5.3
+
+
 Watch file descriptors
 ----------------------
 
diff --git a/Misc/NEWS.d/next/Documentation/2017-11-21-10-54-16.bpo-32105.91mhWm.rst b/Misc/NEWS.d/next/Documentation/2017-11-21-10-54-16.bpo-32105.91mhWm.rst
new file mode 100644
index 00000000000..6f95b1e9da1
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2017-11-21-10-54-16.bpo-32105.91mhWm.rst
@@ -0,0 +1 @@
+Added asyncio.BaseEventLoop.connect_accepted_socket versionaddded marker.



More information about the Python-checkins mailing list