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

(cherry picked from commit 431665bf19)
This commit is contained in:
Miss Islington (bot) 2017-11-21 08:16:40 -08:00 committed by Yury Selivanov
parent 32b003aca3
commit d7ed48c2b8
2 changed files with 4 additions and 0 deletions

View 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
----------------------

View File

@ -0,0 +1 @@
Added asyncio.BaseEventLoop.connect_accepted_socket versionaddded marker.