commit | d06a065a441896477f8dc4f5543654f6ba20bb51 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sat Jul 16 01:13:34 2011 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sat Jul 16 01:13:34 2011 +0200 |
tree | e5914db2b6a27f0ccb55b74ce7fe0862c8f67c68 | |
parent | db535957cd4b44c6176e49dc2d28f034ece5262c [diff] [blame] |
Fix potential resource leaks in concurrent.futures.ProcessPoolExecutor by joining all queues and processes when shutdown() is called.
diff --git a/Misc/NEWS b/Misc/NEWS index e75de01..8d7fb16 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -228,6 +228,9 @@ Library ------- +- Fix potential resource leaks in concurrent.futures.ProcessPoolExecutor + by joining all queues and processes when shutdown() is called. + - Issue #11603: Fix a crash when __str__ is rebound as __repr__. Patch by Andreas Stührk.