]> granicus.if.org Git - python/commitdiff
Issue #25134: Update asyncio doc for SSL on Windows
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 15 Sep 2015 20:41:52 +0000 (22:41 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 15 Sep 2015 20:41:52 +0000 (22:41 +0200)
ProactorEventLoop now supports SSL.

Doc/library/asyncio-eventloop.rst

index 6022c2d165c1cda36f7328f3b7b76b34b19a8df3..889c8e251da54753d21d5b5a5c5352ce794af044 100644 (file)
@@ -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 <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::