summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-11-23 12:56:58 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-11-23 12:56:58 (GMT)
commit72d28500b3c5e6f4051826432b2a801ce4e556f4 (patch)
treea9dea78f3f5f280297c4f419f5fd049c8e96f0bc /Misc
parenta30d82f597927f0a7184d1b1018416d1739f4b11 (diff)
downloadcpython-72d28500b3c5e6f4051826432b2a801ce4e556f4.zip
cpython-72d28500b3c5e6f4051826432b2a801ce4e556f4.tar.gz
cpython-72d28500b3c5e6f4051826432b2a801ce4e556f4.tar.bz2
Issue #19292: Add SSLContext.load_default_certs() to load default root CA
certificates from default stores or system stores. By default the method loads CA certs for authentication of server certs.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ed04e36..ac04743 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -68,6 +68,10 @@ Core and Builtins
Library
-------
+- Issue #19292: Add SSLContext.load_default_certs() to load default root CA
+ certificates from default stores or system stores. By default the method
+ loads CA certs for authentication of server certs.
+
- Issue #19673: Add pathlib to the stdlib as a provisional module (PEP 428).
- Issue #17916: Added dis.Bytecode.from_traceback() and