summaryrefslogtreecommitdiff
path: root/Doc/library/asyncio-eventloop.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/asyncio-eventloop.rst')
-rw-r--r--Doc/library/asyncio-eventloop.rst16
1 files changed, 10 insertions, 6 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 96468ae567..dbe351d5f7 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -38,14 +38,14 @@ Run an event loop
that callbacks scheduled by callbacks will not run in that case;
they will run the next time :meth:`run_forever` is called.
- .. versionchanged:: 3.4.4
+ .. versionchanged:: 3.5.1
.. method:: BaseEventLoop.run_until_complete(future)
Run until the :class:`Future` is done.
If the argument is a :ref:`coroutine object <coroutine>`, it is wrapped by
- :func:`async`.
+ :func:`ensure_future`.
Return the Future's result, or raise its exception.
@@ -60,7 +60,7 @@ Run an event loop
This causes :meth:`run_forever` to exit at the next suitable
opportunity (see there for more details).
- .. versionchanged:: 3.4.4
+ .. versionchanged:: 3.5.1
.. method:: BaseEventLoop.is_closed()
@@ -285,7 +285,9 @@ Creating connections
to bind the socket to locally. The *local_host* and *local_port*
are looked up using getaddrinfo(), similarly to *host* and *port*.
- On Windows with :class:`ProactorEventLoop`, SSL/TLS is not supported.
+ .. versionchanged:: 3.5
+
+ On Windows with :class:`ProactorEventLoop`, SSL/TLS is now supported.
.. seealso::
@@ -409,14 +411,16 @@ Creating listening connections
This method is a :ref:`coroutine <coroutine>`.
- On Windows with :class:`ProactorEventLoop`, SSL/TLS is not supported.
+ .. versionchanged:: 3.5
+
+ On Windows with :class:`ProactorEventLoop`, SSL/TLS is now supported.
.. seealso::
The function :func:`start_server` creates a (:class:`StreamReader`,
:class:`StreamWriter`) pair and calls back a function with this pair.
- .. versionchanged:: 3.4.4
+ .. versionchanged:: 3.5.1
The *host* parameter can now be a sequence of strings.