diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-09-19 21:29:08 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-09-19 21:29:08 (GMT) |
commit | 49d77fd58a1d1a422d47152ed52bb1f30405b913 (patch) | |
tree | 5dde8c30b691a91b6a4b0768cee1bcfda86dea2a | |
parent | ce30237493766aa5419768f3113651b169486513 (diff) | |
download | cpython-49d77fd58a1d1a422d47152ed52bb1f30405b913.zip cpython-49d77fd58a1d1a422d47152ed52bb1f30405b913.tar.gz cpython-49d77fd58a1d1a422d47152ed52bb1f30405b913.tar.bz2 |
remove extra letter
-rw-r--r-- | Doc/whatsnew/2.7.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index da0fdb6..e533adf 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -2572,7 +2572,7 @@ 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 in :issue:`21308`.) -* :func:`os.urandomn` was changed to cache a file descriptor to ``/dev/urandom`` +* :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 in :issue:`21305`.) |