diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-10-01 07:59:32 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-10-01 07:59:32 (GMT) |
commit | 78cc2e89687f3f2b7fd404831a6ea19baccf8c81 (patch) | |
tree | b4f84e00e29f873b5cc2405d0cf0fb4a7a172045 /Misc | |
parent | 3f18f10f39a55963e63d544382f0e17668ed97e8 (diff) | |
download | cpython-78cc2e89687f3f2b7fd404831a6ea19baccf8c81.zip cpython-78cc2e89687f3f2b7fd404831a6ea19baccf8c81.tar.gz cpython-78cc2e89687f3f2b7fd404831a6ea19baccf8c81.tar.bz2 |
Issue #25003: os.urandom() doesn't use getentropy() on Solaris because
getentropy() is blocking, whereas os.urandom() should not block. getentropy()
is supported since Solaris 11.3.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ Release date: tba Core and Builtins ----------------- +- Issue #25003: os.urandom() doesn't use getentropy() on Solaris because + getentropy() is blocking, whereas os.urandom() should not block. getentropy() + is supported since Solaris 11.3. + - Issue #25182: The stdprinter (used as sys.stderr before the io module is imported at startup) now uses the backslashreplace error handler. |