]> granicus.if.org Git - python/commitdiff
bpo-32105: add asyncio.BaseEventLoop.connect_accepted_socket versionadded to document...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 21 Nov 2017 16:16:40 +0000 (08:16 -0800)
committerYury Selivanov <yury@magic.io>
Tue, 21 Nov 2017 16:16:40 +0000 (11:16 -0500)
(cherry picked from commit 431665bf1971e66c51f59abf0693f700ff7919e8)

Doc/library/asyncio-eventloop.rst
Misc/NEWS.d/next/Documentation/2017-11-21-10-54-16.bpo-32105.91mhWm.rst [new file with mode: 0644]

index 83bbb70b03792885e689bc768beaa3513cb0c2a2..27c170e3ec8472744b1196e0f0db610891f920f5 100644 (file)
@@ -500,6 +500,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 (file)
index 0000000..6f95b1e
--- /dev/null
@@ -0,0 +1 @@
+Added asyncio.BaseEventLoop.connect_accepted_socket versionaddded marker.