commit | dc19c24832fac20402f6cf4d2396c299a73766bb | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sat Jul 16 01:51:58 2011 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sat Jul 16 01:51:58 2011 +0200 |
tree | 310ee12d3a4ccaf1ceb12cda042ec2bb54271673 | |
parent | d06a065a441896477f8dc4f5543654f6ba20bb51 [diff] [blame] |
Silence spurious "broken pipe" tracebacks when shutting down a ProcessPoolExecutor.
diff --git a/Misc/NEWS b/Misc/NEWS index 8d7fb16..53465b4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -228,6 +228,9 @@ Library ------- +- Silence spurious "broken pipe" tracebacks when shutting down a + ProcessPoolExecutor. + - Fix potential resource leaks in concurrent.futures.ProcessPoolExecutor by joining all queues and processes when shutdown() is called.