summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-25 20:28:15 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-25 20:28:15 (GMT)
commit4558bad7d64a7599b46fb56ea2df52319437f3a0 (patch)
tree8cb5015f604888d24cf9cc88f0b3b66609f7ea27 /Misc
parentfd9ebd4a361805607baea3e038652f207575ced8 (diff)
downloadcpython-4558bad7d64a7599b46fb56ea2df52319437f3a0.zip
cpython-4558bad7d64a7599b46fb56ea2df52319437f3a0.tar.gz
cpython-4558bad7d64a7599b46fb56ea2df52319437f3a0.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 f65fafe..fba2c3d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -83,6 +83,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 #13458: Fix a memory leak in the ssl module when decoding a
certificate with a subjectAltName. Patch by Robert Xiao.