summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-09-07 21:49:07 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-09-07 21:49:07 (GMT)
commite299cae230cc5c8d20c9ed0cb478427984995348 (patch)
treecc60a6231bf6248297c8ec4a8231786034047461 /Misc/NEWS
parentbc71f2cf98fc86d39768275cfb9408195fd47c09 (diff)
downloadcpython-e299cae230cc5c8d20c9ed0cb478427984995348.zip
cpython-e299cae230cc5c8d20c9ed0cb478427984995348.tar.gz
cpython-e299cae230cc5c8d20c9ed0cb478427984995348.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/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b080c1e..e02e1d7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -103,6 +103,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 #15841: The readable(), writable() and seekable() methods of
io.BytesIO and io.StringIO objects now raise ValueError when the object has
been closed. Patch by Alessandro Moura.