diff options
author | Christian Heimes <christian@python.org> | 2017-09-10 19:14:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-10 19:14:34 (GMT) |
commit | 28580316a57d1757978196c27286f989d21ec0f3 (patch) | |
tree | 8b2d7251431ce7fab588331a37fd8660094dd8d9 /Doc/library | |
parent | f8909d0e4b652256e4da153fa6be664490f60a07 (diff) | |
download | cpython-28580316a57d1757978196c27286f989d21ec0f3.zip cpython-28580316a57d1757978196c27286f989d21ec0f3.tar.gz cpython-28580316a57d1757978196c27286f989d21ec0f3.tar.bz2 |
bpo-29136: Fix versionchange for TLS 1.3 changes (#3483)
Thanks Arfrever!
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/ssl.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index f19526b..d7e0467 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -297,7 +297,7 @@ purposes. 3DES was dropped from the default cipher string. - .. versionchanged:: 3.7 + .. versionchanged:: 3.6.3 TLS 1.3 cipher suites TLS_AES_128_GCM_SHA256, TLS_AES_256_GCM_SHA384, and TLS_CHACHA20_POLY1305_SHA256 were added to the default cipher string. @@ -776,7 +776,7 @@ Constants When Python has been compiled against an older version of OpenSSL, the flag defaults to *0*. - .. versionadded:: 3.7 + .. versionadded:: 3.6.3 .. data:: OP_CIPHER_SERVER_PREFERENCE @@ -856,7 +856,7 @@ Constants Whether the OpenSSL library has built-in support for the TLS 1.3 protocol. - .. versionadded:: 3.7 + .. versionadded:: 3.6.3 .. data:: CHANNEL_BINDING_TYPES |