[Python-checkins] cpython (2.7): 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/f18b37befb6c
changeset:   93766:f18b37befb6c
branch:      2.7
parent:      93762:49d267a58cc2
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
@@ -520,8 +520,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::
 
@@ -531,6 +531,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