diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-11-14 10:05:04 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-11-14 10:05:04 (GMT) |
commit | 01bd3c1231a7372b43efc757d8ad45a08c030b51 (patch) | |
tree | 7926bcaead1ac73ce4d34fc6445522e076109271 | |
parent | 2d142707346d7cc966f672a7b1c4d2702e5580c7 (diff) | |
download | cpython-01bd3c1231a7372b43efc757d8ad45a08c030b51.zip cpython-01bd3c1231a7372b43efc757d8ad45a08c030b51.tar.gz cpython-01bd3c1231a7372b43efc757d8ad45a08c030b51.tar.bz2 |
Close #22300 by tweaking 2.7.9 What's New announcements
-rw-r--r-- | Doc/whatsnew/2.7.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index 3fde2d8..4c86f3e 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -2570,10 +2570,18 @@ with the first of those changes appearing in the Python 2.7.7 release. certificate store, the :class:`~ssl.SSLContext` class, and other features. (Contributed by Alex Gaynor and David Reid; :issue:`21308`.) + Refer to the "Version added: 2.7.9" notes in the module documentation for + specific details. + * :func:`os.urandom` was changed to cache a file descriptor to ``/dev/urandom`` instead of reopening ``/dev/urandom`` on every call. (Contributed by Alex Gaynor; :issue:`21305`.) +* :data:`hashlib.algorithms_guaranteed` and + :data:`hashlib.algorithms_available` were backported from Python 3 to make + it easier for Python 2 applications to select the strongest available hash + algorithm. (Contributed by Alex Gaynor in :issue:`21307`) + PEP 477: Backport ensurepip (PEP 453) to Python 2.7 --------------------------------------------------- |