commit | b02302c5cf2c25be71fc23db15a1cd27fc517075 | [log] [tgz] |
---|---|---|
author | Charles-François Natali <neologix@free.fr> | Thu Aug 18 17:18:28 2011 +0200 |
committer | Charles-François Natali <neologix@free.fr> | Thu Aug 18 17:18:28 2011 +0200 |
tree | 126dd663a9e1b108ea32706778b53e47f5870ddf | |
parent | 02ebf4f78b8f9cd753d4138e5b85323dec1f16d4 [diff] [blame] |
Issue #12650: Fix a race condition where a subprocess.Popen could leak resources (FD/zombie) when killed at the wrong time.
diff --git a/Misc/NEWS b/Misc/NEWS index 139eb6f..679b4b0 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Library ------- +- Issue #12650: Fix a race condition where a subprocess.Popen could leak + resources (FD/zombie) when killed at the wrong time. + - Issue #12752: Fix regression which prevented locale.normalize() from accepting unicode strings.