diff options
author | Christian Heimes <christian@python.org> | 2016-09-13 11:27:41 (GMT) |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2016-09-13 11:27:41 (GMT) |
commit | a873f7a61583eb20cf3f256fc2f92ba555cdd171 (patch) | |
tree | 16af145e436d4af6e66bd40cc9fe1fb97af285f0 /Doc | |
parent | 46dac0723aee4b7cc6f3fd8bee6b8f5832fddeee (diff) | |
parent | ed9c0706cf29efafdea39043c78260e404a16c8f (diff) | |
download | cpython-a873f7a61583eb20cf3f256fc2f92ba555cdd171.zip cpython-a873f7a61583eb20cf3f256fc2f92ba555cdd171.tar.gz cpython-a873f7a61583eb20cf3f256fc2f92ba555cdd171.tar.bz2 |
Explain why PROTOCOL_SSLv23 does not support SSLv2 and SSLv3 by default.
Diffstat (limited to 'Doc')
-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:: |