diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-27 09:03:23 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-27 09:03:23 (GMT) |
commit | e10ae8871a057d6afb5a4c5650e0ed029f13721d (patch) | |
tree | 532895304a3041fa78899b862c74467308f6c56b | |
parent | 9e2e5329dc81b56c987fe33c84f3a4c6f368f413 (diff) | |
parent | 9f6b02ecdedbd033be3e77960aa3abf314fa9db7 (diff) | |
download | cpython-e10ae8871a057d6afb5a4c5650e0ed029f13721d.zip cpython-e10ae8871a057d6afb5a4c5650e0ed029f13721d.tar.gz cpython-e10ae8871a057d6afb5a4c5650e0ed029f13721d.tar.bz2 |
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 750fbb7..7691996 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -392,7 +392,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 |