From: Gregory P. Smith Date: Sun, 14 Mar 2010 06:52:18 +0000 (+0000) Subject: NEWS entry for subprocess module C extension in r78946. X-Git-Tag: v3.2a1~1472 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a31f57cc9a6df320fa4427f6cd3bb8066be5f451;p=python NEWS entry for subprocess module C extension in r78946. --- diff --git a/Misc/NEWS b/Misc/NEWS index e810632cba..f937d55a0c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -283,6 +283,10 @@ C-API Library ------- +- The internals of the subprocess module on POSIX systems have been replaced + by an extension module (_posixsubprocess) so that the fork()+exec() can be + done safely without the possibility of deadlock in multithreaded applications. + - Issue #6472: The xml.etree package is updated to ElementTree 1.3. The cElementTree module is updated too.