diff options
author | Christian Heimes <christian@python.org> | 2016-09-13 11:27:26 (GMT) |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2016-09-13 11:27:26 (GMT) |
commit | ed9c0706cf29efafdea39043c78260e404a16c8f (patch) | |
tree | d677990abb37ad80d817fe0c89665f530b6a43aa | |
parent | 17352fff923b90d3d829c29c063aacdb68fb987c (diff) | |
download | cpython-ed9c0706cf29efafdea39043c78260e404a16c8f.zip cpython-ed9c0706cf29efafdea39043c78260e404a16c8f.tar.gz cpython-ed9c0706cf29efafdea39043c78260e404a16c8f.tar.bz2 |
Explain why PROTOCOL_SSLv23 does not support SSLv2 and SSLv3 by default.
-rw-r--r-- | Doc/library/ssl.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 3a9ffbc..76003ea 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -205,7 +205,7 @@ instead. .. rubric:: Footnotes .. [1] :class:`SSLContext` disables SSLv2 with :data:`OP_NO_SSLv2` by default. - .. [2] :class:`SSLContext` disables SSLv2 with :data:`OP_NO_SSLv2` by default. + .. [2] :class:`SSLContext` disables SSLv3 with :data:`OP_NO_SSLv3` by default. .. note:: |