[Python-checkins] cpython: Issue #22560, asyncio doc: ProactorEventLoop now supports SSL!

victor.stinner python-checkins at python.org
Wed Jan 14 00:30:48 CET 2015


https://hg.python.org/cpython/rev/b9fbbe7103e7
changeset:   94130:b9fbbe7103e7
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Wed Jan 14 00:30:22 2015 +0100
summary:
  Issue #22560, asyncio doc: ProactorEventLoop now supports SSL!

files:
  Doc/library/asyncio-eventloops.rst |  6 ++++--
  1 files changed, 4 insertions(+), 2 deletions(-)


diff --git a/Doc/library/asyncio-eventloops.rst b/Doc/library/asyncio-eventloops.rst
--- a/Doc/library/asyncio-eventloops.rst
+++ b/Doc/library/asyncio-eventloops.rst
@@ -100,8 +100,6 @@
 
 :class:`ProactorEventLoop` specific limits:
 
-- SSL is not supported: :meth:`~BaseEventLoop.create_connection` and
-  :meth:`~BaseEventLoop.create_server` cannot be used with SSL for example
 - :meth:`~BaseEventLoop.create_datagram_endpoint` (UDP) is not supported
 - :meth:`~BaseEventLoop.add_reader` and :meth:`~BaseEventLoop.add_writer` are
   not supported
@@ -112,6 +110,10 @@
 <http://fr.wikipedia.org/wiki/High_Precision_Event_Timer>`_) and on the Windows
 configuration. See :ref:`asyncio delayed calls <asyncio-delayed-calls>`.
 
+.. versionchanged:: 3.5
+
+   :class:`ProactorEventLoop` now supports SSL.
+
 
 Mac OS X
 ^^^^^^^^

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list