]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add a Misc/NEWS entry for issue 8052.
authorGregory P. Smith <greg@krypto.org>
Sat, 21 Jan 2012 22:50:11 +0000 (14:50 -0800)
committerGregory P. Smith <greg@krypto.org>
Sat, 21 Jan 2012 22:50:11 +0000 (14:50 -0800)
Misc/NEWS

index 74453c9ebfa743ada73f211d3fb8163da6bedf0a..fba506c83d694adfc244e9317ae67d1a96a040c0 100644 (file)
--- 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.