summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-12-06 11:36:32 -0500
committerBenjamin Peterson <benjamin@python.org>2014-12-06 11:36:32 -0500
commit176942412d6684feb5e44bbbb08569c9aad7c9d8 (patch)
tree6d6e3e709d44f6d3f9d04f62770dad4687da94b0
parent71976d1eb104d2ebdffe45a41e17b183e75a471c (diff)
downloadcpython-176942412d6684feb5e44bbbb08569c9aad7c9d8.tar.gz
note that sslv3 may not be available
-rw-r--r--Doc/library/ssl.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index e6398ae754..8ef6cbef36 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -520,8 +520,8 @@ Constants
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 @@ Constants
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.