diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 83bbb70b037..27c170e3ec8 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -500,6 +500,9 @@ Creating listening connections This method is a :ref:`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.