summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-04-12 20:38:22 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-04-12 20:38:22 (GMT)
commit7258176c68a5061a5d05ee43f11e99fd94e34364 (patch)
tree597ea7abf56a58a178003e6fe7efb8bcccef623c /Misc
parent328cb1fed0c91f50f311cdc545fe0e9303d0dae7 (diff)
parent1b80b24007154d1f5764b1c14b95c80289cd3c34 (diff)
downloadcpython-7258176c68a5061a5d05ee43f11e99fd94e34364.zip
cpython-7258176c68a5061a5d05ee43f11e99fd94e34364.tar.gz
cpython-7258176c68a5061a5d05ee43f11e99fd94e34364.tar.bz2
Merge 3.5 (os.urandom)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7284d3f..d98c184 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.