summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-03-31 22:20:35 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-03-31 22:20:35 (GMT)
commit42f9b4e5b4fff45ef4a071112787de6b29a5099a (patch)
treed5c6d7fa45a9cea2084bbabbf9c85c647fc38ba4 /Misc
parentb7715865e77a7516859710122b07bd0963936209 (diff)
downloadcpython-42f9b4e5b4fff45ef4a071112787de6b29a5099a.zip
cpython-42f9b4e5b4fff45ef4a071112787de6b29a5099a.tar.gz
cpython-42f9b4e5b4fff45ef4a071112787de6b29a5099a.tar.bz2
Issue 5619: Pass MS CRT debug flags into subprocesses
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 401b29e..d5b055c 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -685,6 +685,7 @@ Daniel Stutzbach
Nathan Sullivan
Mark Summerfield
Hisao Suzuki
+Andrew Svetlov
Kalle Svensson
Paul Swartz
Thenault Sylvain
diff --git a/Misc/NEWS b/Misc/NEWS
index 6bded6b..aa99ac0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -199,6 +199,9 @@ Core and Builtins
Library
-------
+- Issue #5619: Multiprocessing children disobey the debug flag and causes
+ popups on windows buildbots. Patch applied to work around this issue.
+
- Issue #5632: Thread.ident was None for the main thread and threads not created
with the threading module.