summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-25 20:29:27 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-25 20:29:27 (GMT)
commitc24847658fb1e676391d3db1096219581cd2782c (patch)
tree0077927f8066b0ed872f5f2c4947e9dd13290b02 /Misc
parentcad939bf9d83cd7d9f0b74076e81c3b1de16d88d (diff)
parent4558bad7d64a7599b46fb56ea2df52319437f3a0 (diff)
downloadcpython-c24847658fb1e676391d3db1096219581cd2782c.zip
cpython-c24847658fb1e676391d3db1096219581cd2782c.tar.gz
cpython-c24847658fb1e676391d3db1096219581cd2782c.tar.bz2
Issue #12856: Ensure child processes do not inherit the parent's random seed for filename generation in the tempfile module.
Patch by Brian Harring.
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 c0d64f4..11f3de2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -395,6 +395,10 @@ Core and Builtins
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.