diff options
author | Christian Heimes <christian@python.org> | 2020-06-01 06:58:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-01 06:58:14 (GMT) |
commit | a871f692b4a2e6c7d45579693e787edc0af1a02c (patch) | |
tree | e866e16f4f68680e6ea01dcd5c35a7be3fdca0f7 /Misc | |
parent | 2f172d8f1525defe9bba4d49e967fdfc69151731 (diff) | |
download | cpython-a871f692b4a2e6c7d45579693e787edc0af1a02c.zip cpython-a871f692b4a2e6c7d45579693e787edc0af1a02c.tar.gz cpython-a871f692b4a2e6c7d45579693e787edc0af1a02c.tar.bz2 |
bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397)
Fix :mod:`ssl`` code to be compatible with OpenSSL 1.1.x builds that use
``no-deprecated`` and ``--api=1.1.0``.
Note: Tests assume full OpenSSL API and fail with limited API.
Signed-off-by: Christian Heimes <christian@python.org>
Co-authored-by: Mark Wright <gienah@gentoo.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-05-25-22-18-38.bpo-30008.CKC3td.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-05-25-22-18-38.bpo-30008.CKC3td.rst b/Misc/NEWS.d/next/Library/2020-05-25-22-18-38.bpo-30008.CKC3td.rst new file mode 100644 index 0000000..c4cfa56 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-05-25-22-18-38.bpo-30008.CKC3td.rst @@ -0,0 +1,2 @@ +Fix :mod:`ssl` code to be compatible with OpenSSL 1.1.x builds that use +``no-deprecated`` and ``--api=1.1.0``. |