Issue #25134: Update asyncio doc for SSL on Windows

ProactorEventLoop now supports SSL.
This commit is contained in:
Victor Stinner 2015-09-15 22:41:52 +02:00
parent 878bc871b4
commit 60208a161d
1 changed files with 6 additions and 2 deletions

View File

@ -275,7 +275,9 @@ Creating connections
to bind the socket to locally. The *local_host* and *local_port* to bind the socket to locally. The *local_host* and *local_port*
are looked up using getaddrinfo(), similarly to *host* and *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:: .. seealso::
@ -358,7 +360,9 @@ Creating listening connections
This method is a :ref:`coroutine <coroutine>`. 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:: .. seealso::