summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2019-12-07 16:59:36 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-12-07 16:59:36 (GMT)
commit2b7de6696bf2f924cd2cd9ff0a539c8aa37c6244 (patch)
tree2d75513a7ef6a4927bed64072ac603f0c54e9ad4 /Misc
parent15fb7fa88187f5841088721a43609bffe64a8dc7 (diff)
downloadcpython-2b7de6696bf2f924cd2cd9ff0a539c8aa37c6244.zip
cpython-2b7de6696bf2f924cd2cd9ff0a539c8aa37c6244.tar.gz
cpython-2b7de6696bf2f924cd2cd9ff0a539c8aa37c6244.tar.bz2
bpo-38820: OpenSSL 3.0.0 compatibility. (GH-17190)
test_openssl_version now accepts version 3.0.0. getpeercert() no longer returns IPv6 addresses with a trailing new line. Signed-off-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue38820
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-11-16-16-09-07.bpo-38820.ivhUSV.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-11-16-16-09-07.bpo-38820.ivhUSV.rst b/Misc/NEWS.d/next/Library/2019-11-16-16-09-07.bpo-38820.ivhUSV.rst
new file mode 100644
index 0000000..2c6a6e8
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-11-16-16-09-07.bpo-38820.ivhUSV.rst
@@ -0,0 +1,2 @@
+Make Python compatible with OpenSSL 3.0.0. :func:`ssl.SSLSocket.getpeercert`
+no longer returns IPv6 addresses with a trailing new line.