summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-12-05 01:08:41 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-12-05 01:08:41 +0100
commit1d984674ead363ab33afd26fe0f8345c352de80d (patch)
tree81b7fb5003475f5a5194f4ee726a57817f893db6
parent59061a7ae2cf53961ef6cb24becae7a0344f3fa9 (diff)
downloadtrollius-1d984674ead363ab33afd26fe0f8345c352de80d.tar.gz
asyncio: mention than Python 2.7.9 doens't need ssl backport anymore
-rw-r--r--doc/asyncio.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/asyncio.rst b/doc/asyncio.rst
index 6c1ae98..5866d62 100644
--- a/doc/asyncio.rst
+++ b/doc/asyncio.rst
@@ -78,7 +78,8 @@ On Python 3.3 and newer, these symbols are just aliases to exceptions of the
``trollius.BACKPORT_SSL_ERRORS`` constant:
-* ``True`` if ``ssl.SSLError`` are wrapped to Trollius exceptions,
+* ``True`` if ``ssl.SSLError`` are wrapped to Trollius exceptions (Python 2
+ older than 2.7.9, or Python 3 older than 3.3),
* ``False`` is trollius SSL exceptions are just aliases.
@@ -111,7 +112,8 @@ On Python 3.2 and older, the trollius SSL transport does not have the
``trollius.BACKPORT_SSL_CONTEXT`` constant:
-* ``True`` if ``trollius.SSLContext`` is the backported class,
+* ``True`` if ``trollius.SSLContext`` is the backported class (Python 2 older
+ than 2.7.9, or Python 3 older than 3.3),
* ``False`` if ``trollius.SSLContext`` is just an alias to ``ssl.SSLContext``.