From: Gregory P. Smith Date: Sat, 21 Jan 2012 22:50:11 +0000 (-0800) Subject: Add a Misc/NEWS entry for issue 8052. X-Git-Tag: v3.2.3rc1~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9564e4cbf86bd37c5ba1ae47b4a88b7f94196dd5;p=thirdparty%2FPython%2Fcpython.git Add a Misc/NEWS entry for issue 8052. --- diff --git a/Misc/NEWS b/Misc/NEWS index 74453c9ebfa7..fba506c83d69 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -13,6 +13,11 @@ Core and Builtins - Fix the builtin module initialization code to store the init function for future reinitialization. +- Issue #8052: The posix subprocess module would take a long time closing + all possible file descriptors in the child process rather than just open + file descriptors. It now closes only the open fds if possible for the + default close_fds=True behavior. + - Issue #13629: Renumber the tokens in token.h so that they match the indexes into _PyParser_TokenNames.