diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-01-21 22:50:11 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-01-21 22:50:11 (GMT) |
commit | 9564e4cbf86bd37c5ba1ae47b4a88b7f94196dd5 (patch) | |
tree | 3bb0270ff4f3d179a6dbbf5a83d08650547e2a32 /Misc | |
parent | 8facece99a5917077833c85c726a699ee7a374f6 (diff) | |
download | cpython-9564e4cbf86bd37c5ba1ae47b4a88b7f94196dd5.zip cpython-9564e4cbf86bd37c5ba1ae47b4a88b7f94196dd5.tar.gz cpython-9564e4cbf86bd37c5ba1ae47b4a88b7f94196dd5.tar.bz2 |
Add a Misc/NEWS entry for issue 8052.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |