diff options
author | Mayank Singhal <17mayank.singhal@gmail.com> | 2018-06-05 14:14:37 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2018-06-05 14:14:37 (GMT) |
commit | 9ef1b0690b90c526798b6b3125b0fa7ae98319a2 (patch) | |
tree | a8bd720fdcd963d5a47d2a7e6e1706f4d64c8403 | |
parent | 6592d7fe11477f8f974d2d4a85c3382a1ad05217 (diff) | |
download | cpython-9ef1b0690b90c526798b6b3125b0fa7ae98319a2.zip cpython-9ef1b0690b90c526798b6b3125b0fa7ae98319a2.tar.gz cpython-9ef1b0690b90c526798b6b3125b0fa7ae98319a2.tar.bz2 |
bpo-31215: Add version changed notes for OpenSSL 1.1.0 compatibility (GH-7346)
-rw-r--r-- | Doc/library/ssl.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 7a05824..625c692 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -49,6 +49,9 @@ For more sophisticated applications, the :class:`ssl.SSLContext` class helps manage settings and certificates, which can then be inherited by SSL sockets created through the :meth:`SSLContext.wrap_socket` method. +.. versionchanged:: 3.5.3 + Updated to support linking with OpenSSL 1.1.0 + .. versionchanged:: 3.6 OpenSSL 0.9.8, 1.0.0 and 1.0.1 are deprecated and no longer supported. |