From: Victor Stinner Date: Tue, 12 Apr 2016 20:38:22 +0000 (+0200) Subject: Merge 3.5 (os.urandom) X-Git-Tag: v3.6.0a1~223 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7258176c68a5061a5d05ee43f11e99fd94e34364;p=python Merge 3.5 (os.urandom) --- 7258176c68a5061a5d05ee43f11e99fd94e34364 diff --cc Misc/NEWS index 7284d3f1ca,dbebc76053..d98c184518 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -240,11 -101,11 +240,15 @@@ Core and Builtin 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. + +- Issue #26685: Raise OSError if closing a socket fails. + - Issue #16329: Add .webm to mimetypes.types_map. Patch by Giampaolo Rodola'. - Issue #13952: Add .csv to mimetypes.types_map. Patch by Geoff Wilson.