summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-08-18 17:11:29 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-08-18 17:11:29 (GMT)
commit558639f0c9cc507acafd0c3842a23d03b2244652 (patch)
tree6fe7f3f1eca5ad431164b89aad298523b43f504c /Misc
parent020340f2841ec2b70b9e09921850d16019d0667e (diff)
parent134a8baed9b70b2d6a953d0c872fc2c42580e1b6 (diff)
downloadcpython-558639f0c9cc507acafd0c3842a23d03b2244652.zip
cpython-558639f0c9cc507acafd0c3842a23d03b2244652.tar.gz
cpython-558639f0c9cc507acafd0c3842a23d03b2244652.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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 06e4483..b96bb3d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -262,6 +262,9 @@ Core and Builtins
Library
-------
+- Issue #12650: Fix a race condition where a subprocess.Popen could leak
+ resources (FD/zombie) when killed at the wrong time.
+
- Issue #12744: Fix inefficient representation of integers between 2**31 and
2**63 on systems with a 64-bit C "long".