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)
commita5d5bb997b1cb8b5d8a33d67c505ceba3bc3d9e9 (patch)
tree9e88e41369c4d6ebb7dedf6781de00d90d79651f /Misc
parentda75dd2a9bc56d8a68e106fa10f8dd0052fff869 (diff)
downloadcpython-a5d5bb997b1cb8b5d8a33d67c505ceba3bc3d9e9.zip
cpython-a5d5bb997b1cb8b5d8a33d67c505ceba3bc3d9e9.tar.gz
cpython-a5d5bb997b1cb8b5d8a33d67c505ceba3bc3d9e9.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 be93de4..f41263d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -79,6 +79,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.