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 | 9f6b02ecdedbd033be3e77960aa3abf314fa9db7 (patch) | |
tree | 72956e9c0465f08538449f97f2848959980d8fa3 | |
parent | 3f366314e831e0babca220abd734f8ae02776925 (diff) | |
download | cpython-git-9f6b02ecdedbd033be3e77960aa3abf314fa9db7.tar.gz |
Clarify that ssl.OP_ALL can be different from OpenSSL's SSL_OP_ALL.
-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 |