summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-06-22 17:31:58 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-06-22 17:31:58 (GMT)
commit24cd4cfc58a211fe531c73306306b8dc1acc3610 (patch)
treecca8c8b04c5424e67cb2bc44f44feabd5a4e1dca /Doc
parent6ade516510302f8d88ab05956e539a57941c7d00 (diff)
downloadcpython-24cd4cfc58a211fe531c73306306b8dc1acc3610.zip
cpython-24cd4cfc58a211fe531c73306306b8dc1acc3610.tar.gz
cpython-24cd4cfc58a211fe531c73306306b8dc1acc3610.tar.bz2
Add my SSL module patches to whatsnew 3.4
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.4.rst12
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 8399f68..34fa3ef 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -191,6 +191,18 @@ both socket level errors and SMTP protocol level errors to be caught in one
try/except statement by code that only cares whether or not an error occurred.
(:issue:`2118`).
+ssl
+---
+
+New diagnostic functions :func:`~ssl.get_default_verify_paths`,
+:meth:`~ssl.SSLContext.cert_store_stats` and
+:meth:`~ssl.SSLContext.get_ca_certs`
+
+Add :func:`ssl.enum_cert_store` to retrieve certificates and CRL from Windows'
+cert store.
+
+(Contributed by Christian Heimes in :issue:`18143`, :issue:`18147` and
+:issue:`17134`)
wave
----