From: Antoine Pitrou Date: Fri, 25 Nov 2011 20:29:27 +0000 (+0100) Subject: Issue #12856: Ensure child processes do not inherit the parent's random seed for... X-Git-Tag: v3.3.0a1~732^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c24847658fb1e676391d3db1096219581cd2782c;p=python Issue #12856: Ensure child processes do not inherit the parent's random seed for filename generation in the tempfile module. Patch by Brian Harring. --- c24847658fb1e676391d3db1096219581cd2782c diff --cc Misc/NEWS index c0d64f41cb,fba2c3d7d9..11f3de2ae8 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -395,9 -83,10 +395,13 @@@ Core and Builtin Library ------- + - Issue #12856: Ensure child processes do not inherit the parent's random + seed for filename generation in the tempfile module. Patch by Brian + Harring. + +- Issue #9957: SpooledTemporaryFile.truncate() now accepts an optional size + parameter, as other file-like objects. Patch by Ryan Kelly. + - Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. Patch by Robert Xiao.