From: Victor Stinner Date: Tue, 15 Sep 2015 20:41:52 +0000 (+0200) Subject: Issue #25134: Update asyncio doc for SSL on Windows X-Git-Tag: v3.5.1rc1~342 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=60208a161df5e77af91ae8230e089a0f2805872b;p=python Issue #25134: Update asyncio doc for SSL on Windows ProactorEventLoop now supports SSL. --- diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 6022c2d165..889c8e251d 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -275,7 +275,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:: @@ -358,7 +360,9 @@ Creating listening connections This method is a :ref:`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::