diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-09-07 21:49:07 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-09-07 21:49:07 (GMT) |
commit | 380c55cc58911a4777f080744f596d1e96fd2357 (patch) | |
tree | f68d1b5d4e28c98b865ac0a06a965973f40057d8 /Misc | |
parent | 0398985920dcad1fcff0859e18a5911a6c685ff1 (diff) | |
download | cpython-380c55cc58911a4777f080744f596d1e96fd2357.zip cpython-380c55cc58911a4777f080744f596d1e96fd2357.tar.gz cpython-380c55cc58911a4777f080744f596d1e96fd2357.tar.bz2 |
Issue #15340: Fix importing the random module when /dev/urandom cannot be opened.
This was a regression caused by the hash randomization patch.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -18,6 +18,9 @@ Core and Builtins Library ------- +- Issue #15340: Fix importing the random module when /dev/urandom cannot + be opened. This was a regression caused by the hash randomization patch. + - Issue #15785: Modify window.get_wch() API of the curses module: return a character for most keys, and an integer for special keys, instead of always returning an integer. So it is now possible to distinguish special |