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 | e299cae230cc5c8d20c9ed0cb478427984995348 (patch) | |
tree | cc60a6231bf6248297c8ec4a8231786034047461 /Misc/NEWS | |
parent | bc71f2cf98fc86d39768275cfb9408195fd47c09 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |