]> granicus.if.org Git - python/commitdiff
bpo-32105: add asyncio.BaseEventLoop.connect_accepted_socket versionadded to document...
authorAraHaan <seandhunt_7@yahoo.com>
Tue, 21 Nov 2017 16:06:26 +0000 (11:06 -0500)
committerYury Selivanov <yury@magic.io>
Tue, 21 Nov 2017 16:06:26 +0000 (11:06 -0500)
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 dd75a23ae4e0f93b6065a87a2daacc157233bea5..1919b10948b4b8d46d99a6efe5e1fa4e312b3398 100644 (file)
@@ -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 (file)
index 0000000..6f95b1e
--- /dev/null
@@ -0,0 +1 @@
+Added asyncio.BaseEventLoop.connect_accepted_socket versionaddded marker.