summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <cf.natali@gmail.com>2013-08-30 21:32:53 (GMT)
committerCharles-François Natali <cf.natali@gmail.com>2013-08-30 21:32:53 (GMT)
commit9939cc89a4ee54ab50719a597a8b8a0795a691f6 (patch)
treedc42155f1d67de7d96c2f3938cda274b5e6da11a /Misc
parentdee0434e2fb030df448770199627e87c9e06a6bf (diff)
downloadcpython-9939cc89a4ee54ab50719a597a8b8a0795a691f6.zip
cpython-9939cc89a4ee54ab50719a597a8b8a0795a691f6.tar.gz
cpython-9939cc89a4ee54ab50719a597a8b8a0795a691f6.tar.bz2
Issue #18418: After fork(), reinit all threads states, not only active ones.
Patch by A. Jesse Jiryu Davis.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 9596db7..20eeafd 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -279,6 +279,7 @@ Ben Darnell
Kushal Das
Jonathan Dasteel
Pierre-Yves David
+A. Jesse Jiryu Davis
John DeGood
Ned Deily
Vincent Delft
diff --git a/Misc/NEWS b/Misc/NEWS
index 4572ae6..d859de1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #18418: After fork(), reinit all threads states, not only active ones.
+ Patch by A. Jesse Jiryu Davis.
+
- Issue #16611: http.cookie now correctly parses the 'secure' and 'httponly'
cookie flags.