diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-01-21 14:50:56 -0800 |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-01-21 14:50:56 -0800 |
commit | 33b24f7e7c2d05f0351a118f9f0f556b28767475 (patch) | |
tree | c2f1c1148563bafcef3941694e4fbf0bb094c6b2 | |
parent | d635af5a61897e6246bfb1ddf7e4d496bfd1121d (diff) | |
parent | 9564e4cbf86bd37c5ba1ae47b4a88b7f94196dd5 (diff) | |
download | cpython-git-33b24f7e7c2d05f0351a118f9f0f556b28767475.tar.gz |
A Misc/NEWS entry for issue 8052.
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -16,6 +16,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. |