diff options
author | Charles-François Natali <neologix@free.fr> | 2011-08-18 16:49:39 (GMT) |
---|---|---|
committer | Charles-François Natali <neologix@free.fr> | 2011-08-18 16:49:39 (GMT) |
commit | 134a8baed9b70b2d6a953d0c872fc2c42580e1b6 (patch) | |
tree | 37beeda1725ef98a69e9e781e75eaa511c74f8ea /Misc | |
parent | 5ad517a7d9c2694e726b3244505af274f91fb5d9 (diff) | |
download | cpython-134a8baed9b70b2d6a953d0c872fc2c42580e1b6.zip cpython-134a8baed9b70b2d6a953d0c872fc2c42580e1b6.tar.gz cpython-134a8baed9b70b2d6a953d0c872fc2c42580e1b6.tar.bz2 |
Issue #12650: Fix a race condition where a subprocess.Popen could leak
resources (FD/zombie) when killed at the wrong time.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -13,6 +13,11 @@ Core and Builtins - Issue #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters. +Library +------- + +- Issue #12650: Fix a race condition where a subprocess.Popen could leak + resources (FD/zombie) when killed at the wrong time. What's New in Python 3.2.2? =========================== |