diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-27 10:02:55 +0100 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-27 10:02:55 +0100 |
commit | 0743e46c8185d91981ba42ade9e7cae4f7c4e5f5 (patch) | |
tree | 0fafc0a5e378d7abc161eba2bc88f05902b85b62 /Doc | |
parent | e4ce88084be4b4c7ad086b0a7d06ebe7b57cd112 (diff) | |
download | cpython-0743e46c8185d91981ba42ade9e7cae4f7c4e5f5.tar.gz |
Clarify that ssl.OP_ALL can be different from OpenSSL's SSL_OP_ALL.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 0bd54c7a2d..8cd07d75dc 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -316,7 +316,8 @@ Constants .. data:: OP_ALL Enables workarounds for various bugs present in other SSL implementations. - This option is set by default. + This option is set by default. It does not necessarily set the same + flags as OpenSSL's ``SSL_OP_ALL`` constant. .. versionadded:: 3.2 |