]> granicus.if.org Git - python/commit
Fix os.urandom() on Solaris 11.3
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 12 Apr 2016 20:28:49 +0000 (22:28 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 12 Apr 2016 20:28:49 +0000 (22:28 +0200)
commit9d24271d86eb45ed569467cc8d6ef0f491778f26
tree6c8a5136e291f8e4c60cbe2e1bda1f8f53432543
parentc6ec54d8eb47e685dfcc489d4c6e2a78bb817ef0
Fix os.urandom() on Solaris 11.3

Issue #26735: Fix os.urandom() on Solaris 11.3 and newer when reading more than
1,024 bytes: call getrandom() multiple times with a limit of 1024 bytes per
call.
Misc/NEWS
Python/random.c