summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-eventloops.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-13 23:30:22 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-01-13 23:30:22 (GMT)
commit4ec042278fbc0d1ceafeaca8961cf3c47f249aa3 (patch)
tree6512b6887880053e25a2d41518d3f170bee4bc4f /Doc/library/asyncio-eventloops.rst
parent81a04f7ad414909c334ffa2e382a7c4065328fd3 (diff)
downloadcpython-4ec042278fbc0d1ceafeaca8961cf3c47f249aa3.zip
cpython-4ec042278fbc0d1ceafeaca8961cf3c47f249aa3.tar.gz
cpython-4ec042278fbc0d1ceafeaca8961cf3c47f249aa3.tar.bz2
Issue #22560, asyncio doc: ProactorEventLoop now supports SSL!
Diffstat (limited to 'Doc/library/asyncio-eventloops.rst')
-rw-r--r--Doc/library/asyncio-eventloops.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/library/asyncio-eventloops.rst b/Doc/library/asyncio-eventloops.rst
index afb8b9f..ae3bf90 100644
--- a/Doc/library/asyncio-eventloops.rst
+++ b/Doc/library/asyncio-eventloops.rst
@@ -100,8 +100,6 @@ Common limits of Windows event loops:
: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 @@ The best resolution is 0.5 msec. The resolution depends on the hardware
<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
^^^^^^^^