diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-04-12 20:38:22 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-04-12 20:38:22 (GMT) |
commit | 7258176c68a5061a5d05ee43f11e99fd94e34364 (patch) | |
tree | 597ea7abf56a58a178003e6fe7efb8bcccef623c /Misc | |
parent | 328cb1fed0c91f50f311cdc545fe0e9303d0dae7 (diff) | |
parent | 1b80b24007154d1f5764b1c14b95c80289cd3c34 (diff) | |
download | cpython-7258176c68a5061a5d05ee43f11e99fd94e34364.zip cpython-7258176c68a5061a5d05ee43f11e99fd94e34364.tar.gz cpython-7258176c68a5061a5d05ee43f11e99fd94e34364.tar.bz2 |
Merge 3.5 (os.urandom)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -240,6 +240,10 @@ Core and Builtins Library ------- +- Issue #26735: Fix :func:`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. + - Issue #26585: Eliminate http.server._quote_html() and use html.escape(quote=False). Patch by Xiang Zhang. |