summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.4.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-02-01 17:27:07 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-02-01 17:27:07 (GMT)
commit8c561b52b2ab52b419c506a28d72d256f5c933cc (patch)
tree889d0d5be523626118e946a6cf8308a7df842df8 /Doc/whatsnew/3.4.rst
parent7726ac9163081a3730d30d4334135d6bf26900fc (diff)
downloadcpython-8c561b52b2ab52b419c506a28d72d256f5c933cc.zip
cpython-8c561b52b2ab52b419c506a28d72d256f5c933cc.tar.gz
cpython-8c561b52b2ab52b419c506a28d72d256f5c933cc.tar.bz2
whatsnew: move of reload, update new windows-only ssl functions entry.
Diffstat (limited to 'Doc/whatsnew/3.4.rst')
-rw-r--r--Doc/whatsnew/3.4.rst10
1 files changed, 8 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index 167cac8..1da0702 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -765,6 +765,10 @@ for the :meth:`~importlib.abc.InspectLoader.get_code` method. However,
it will normally be desirable to override the default implementation
for performance reasons. (Contributed by Brett Cannon in :issue:`18072`.)
+The :func:`~importlib.reload` function has been moved from :mod:`imp`
+to :mod:`importlib`. The :func:`mod.reload` name is retained for
+backward compatibility, but is deprecated.
+
inspect
-------
@@ -1062,8 +1066,10 @@ s), as well as a :meth:`~ssl.SSLContext.get_ca_certs` method that returns a
list of the loaded ``CA`` certificates. (Contributed by Christian Heimes in
and :issue:`18147`.)
-Add :func:`ssl.enum_cert_store` to retrieve certificates and CRL from Windows'
-cert store. (Contributed by Christian Heimes in :issue:`17134`.)
+Two new windows-only functions, :func:`~ssl.enum_certificates` and
+:func:`~ssl.enum_crls` provide the ability to retrieve certificates,
+certificate information, and CRLs from the Windows cert store. (Contributed
+by Christian Heimes in :issue:`17134`.)
Support for server-side SNI using the new
:meth:`ssl.SSLContext.set_servername_callback` method.