[Python-checkins] cpython (3.4): whatsnew for pep 466 ssl backport

benjamin.peterson python-checkins at python.org
Fri Sep 19 23:30:31 CEST 2014


http://hg.python.org/cpython/rev/a4231aa7ff3d
changeset:   92475:a4231aa7ff3d
branch:      3.4
parent:      92469:72a91df86b07
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri Sep 19 17:23:21 2014 -0400
summary:
  whatsnew for pep 466 ssl backport

files:
  Doc/whatsnew/2.7.rst |  11 +++++++++++
  1 files changed, 11 insertions(+), 0 deletions(-)


diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst
--- a/Doc/whatsnew/2.7.rst
+++ b/Doc/whatsnew/2.7.rst
@@ -2565,6 +2565,17 @@
   on python.org (contributed by Zachary Ware in :issue:`21671` for
   CVE-2014-0224)
 
+:pep:`466` related features added in Python 2.7.9:
+
+* Most of Python 3.4's :mod:`ssl` module was backported. This means :mod:`ssl`
+  now supports Server Name Indication, TLS1.x settings, access to the platform
+  certificate store, the :class:`~ssl.SSLContext` class, and other
+  features. (Contributed by Alex Gaynor and David Reid in :issue:`21308`.)
+
+* :func:`os.urandomn` was changed to cache a file descriptor to ``/dev/urandom``
+  instead of reopening ``/dev/urandom`` on every call. (Contributed by Alex
+  Gaynor in :issue:`21305`.)
+
 
 .. ======================================================================
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list