summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-03-05 03:11:12 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-03-05 03:11:12 (GMT)
commitfdb19715879babc580f63bc129f5b0ff46482d1c (patch)
tree50e088b1c0aa68d951b84184b1a5ae0d77552c2e /Misc
parent20f4bd4a043bded930c1c21befe28d9c79ea044b (diff)
downloadcpython-fdb19715879babc580f63bc129f5b0ff46482d1c.zip
cpython-fdb19715879babc580f63bc129f5b0ff46482d1c.tar.gz
cpython-fdb19715879babc580f63bc129f5b0ff46482d1c.tar.bz2
enable X509_V_FLAG_TRUSTED_FIRST when possible (closes #23476)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1298434..29c6214 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #23476: In the ssl module, enable OpenSSL's X509_V_FLAG_TRUSTED_FIRST
+ flag on certificate stores when it is available.
+
- Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the
SSL layer but the underlying connection hasn't been closed.