diff options
author | Raymond Hettinger <python@rcn.com> | 2010-09-10 10:47:22 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-09-10 10:47:22 (GMT) |
commit | ffd2a4215a0bfe82f48ff71381bbfce8552f5f0c (patch) | |
tree | 74cfadca537a186e8564511bca62c81b694434c1 /Misc | |
parent | d55ffdbee38ba9693a2d3346318ef51b5840ea65 (diff) | |
download | cpython-ffd2a4215a0bfe82f48ff71381bbfce8552f5f0c.zip cpython-ffd2a4215a0bfe82f48ff71381bbfce8552f5f0c.tar.gz cpython-ffd2a4215a0bfe82f48ff71381bbfce8552f5f0c.tar.bz2 |
Issue 9816: Random.jumpahead(n) didn't work well for small values of n.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -43,6 +43,10 @@ Core and Builtins Library ------- +- Issue #9816: random.Random.jumpahead(n) did not produce a sufficiently + different internal state for small values of n. Fixed by salting the + value. + - Issue #9792: In case of connection failure, socket.create_connection() would swallow the exception and raise a new one, making it impossible to fetch the original errno, or to filter timeout errors. Now the |