summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-08-18 16:49:39 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-08-18 16:49:39 (GMT)
commit134a8baed9b70b2d6a953d0c872fc2c42580e1b6 (patch)
tree37beeda1725ef98a69e9e781e75eaa511c74f8ea /Misc
parent5ad517a7d9c2694e726b3244505af274f91fb5d9 (diff)
downloadcpython-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/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cbede91..a62b485 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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?
===========================