[Python-checkins] cpython (3.4): note that sslv3 may not be available

benjamin.peterson python-checkins at python.org
Sat Dec 6 17:37:28 CET 2014


https://hg.python.org/cpython/rev/8839e2432d11
changeset:   93768:8839e2432d11
branch:      3.4
parent:      93764:4077e0cd8d48
user:        Benjamin Peterson <benjamin at python.org>
date:        Sat Dec 06 11:36:32 2014 -0500
summary:
  note that sslv3 may not be available

files:
  Doc/library/ssl.rst |  7 +++++--
  1 files changed, 5 insertions(+), 2 deletions(-)


diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -538,8 +538,8 @@
 
    Selects SSL version 2 as the channel encryption protocol.
 
-   This protocol is not available if OpenSSL is compiled with OPENSSL_NO_SSL2
-   flag.
+   This protocol is not available if OpenSSL is compiled with the
+   ``OPENSSL_NO_SSL2`` flag.
 
    .. warning::
 
@@ -549,6 +549,9 @@
 
    Selects SSL version 3 as the channel encryption protocol.
 
+   This protocol is not be available if OpenSSL is compiled with the
+   ``OPENSSL_NO_SSLv3`` flag.
+
    .. warning::
 
       SSL version 3 is insecure.  Its use is highly discouraged.

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


More information about the Python-checkins mailing list