summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-04-10 15:55:37 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-04-10 15:55:37 (GMT)
commit17de8ffc215d8539860a8a7f06279c4155382c4f (patch)
tree9e907f26554e670ab24e464bc602abd420cab377 /Misc
parent3fa6c090d8767caf37aa07761e4c9d98f306d65d (diff)
downloadcpython-17de8ffc215d8539860a8a7f06279c4155382c4f.zip
cpython-17de8ffc215d8539860a8a7f06279c4155382c4f.tar.gz
cpython-17de8ffc215d8539860a8a7f06279c4155382c4f.tar.bz2
Patch #1467770: Add Popen objects to _active only in __del__.
Introduce _child_active member to keep track on whether a child needs to be waited for. Backport candidate.
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 f874a2d..bac4238 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,9 @@ Extension Modules
Library
-------
+- Patch #1467770: Reduce usage of subprocess._active to processes which
+ the application hasn't waited on.
+
- Patch #1462222: Fix Tix.Grid.
- Fix exception when doing glob.glob('anything*/')