8000 Doc: amend ssl.PROTOCOL_SSLv2 and ssl.PROTOCOL_SSLv3 wording by janbrasna · Pull Request #92634 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Doc: amend ssl.PROTOCOL_SSLv2 and ssl.PROTOCOL_SSLv3 wording #92634

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 19, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
docs(ssl): Simplify config options
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
  • Loading branch information
janbrasna and erlend-aasland authored May 18, 2022
commit 481e51d9309ddcb680672d216ac6347fcc3d7915
4 changes: 2 additions & 2 deletions Doc/library/ssl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ Constants
Selects SSL version 2 as the channel encryption protocol.

This protocol is not available if OpenSSL is compiled with the
``no-ssl2`` option (``OPENSSL_NO_SSL2`` flag defined).
``no-ssl2`` option.

.. warning::

Expand All @@ -729,7 +729,7 @@ Constants
Selects SSL version 3 as the channel encryption protocol.

This protocol is not available if OpenSSL is compiled with the
``no-ssl3`` option (``OPENSSL_NO_SSL3`` flag defined).
``no-ssl3`` option.

.. warning::

Expand Down
0