summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-03-18 13:39:33 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-03-18 13:39:33 (GMT)
commit59f7fb29ec151ab64ace5056ab46cf8127a6dac2 (patch)
tree3374b848d6346e5ce6ba314d4dd294dad39f567d /Misc
parent072248ec637a123dc348e6c1ffe075f85785111a (diff)
downloadcpython-59f7fb29ec151ab64ace5056ab46cf8127a6dac2.zip
cpython-59f7fb29ec151ab64ace5056ab46cf8127a6dac2.tar.gz
cpython-59f7fb29ec151ab64ace5056ab46cf8127a6dac2.tar.bz2
Issue #22181: On Linux, os.urandom() now uses the new getrandom() syscall if
available, syscall introduced in the Linux kernel 3.17. It is more reliable and more secure, because it avoids the need of a file descriptor and waits until the kernel has enough entropy.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6f79a73..de3f381 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,11 @@ Core and Builtins
Library
-------
+- Issue #22181: On Linux, os.urandom() now uses the new getrandom() syscall if
+ available, syscall introduced in the Linux kernel 3.17. It is more reliable
+ and more secure, because it avoids the need of a file descriptor and waits
+ until the kernel has enough entropy.
+
- Issue #2211: Updated the implementation of the http.cookies.Morsel class.
Setting attributes key, value and coded_value directly now is deprecated.
update() and setdefault() now transform and check keys. Comparing for