summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-12-21 00:16:38 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-12-21 00:16:38 (GMT)
commitfe02e3902920181b76e7e7a9c761209b7ddb1be1 (patch)
tree6dc0382c3faae561c2ccd1d2cd38fcbd0f4c3b99 /Misc/NEWS
parent94cb7a24298ee0a4d6a3bb6b8ae80a7729e9f788 (diff)
downloadcpython-fe02e3902920181b76e7e7a9c761209b7ddb1be1.zip
cpython-fe02e3902920181b76e7e7a9c761209b7ddb1be1.tar.gz
cpython-fe02e3902920181b76e7e7a9c761209b7ddb1be1.tar.bz2
Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(),
instead of reading /dev/urandom, to get pseudo-random bytes.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 82cdbfd..7932c77 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,9 @@ Core and Builtins
Library
-------
+- Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(),
+ instead of reading /dev/urandom, to get pseudo-random bytes.
+
- Issue #23112: Fix SimpleHTTPServer to correctly carry the query string and
fragment when it redirects to add a trailing slash.