[issue33056] LEaking files in concurrent.futures.process

2018-03-13 Thread Steve Dower
Steve Dower added the comment: Andrew - you can search for some module names in the nosy list to add the designated people for them. The components list doesn't include all of them (perhaps it should?). -- ___ Python tracker

[issue33056] LEaking files in concurrent.futures.process

2018-03-13 Thread Andrew Svetlov
Andrew Svetlov added the comment: Antoine sorry, will do next time -- components: +Windows, XML -Library (Lib) nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker

[issue33056] LEaking files in concurrent.futures.process

2018-03-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: Andrew: where there are multiprocessing issues, could you please nosy me so that I get a chance to review? Thomas: thanks for spotting this and thanks for the fix! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed version

[issue33056] LEaking files in concurrent.futures.process

2018-03-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset f216cbf9ab704da98146a25d57ff0e85aecb49da by Antoine Pitrou (Miss Islington (bot)) in branch '3.7': bpo-33056 FIX leaking fd in concurrent.futures.ProcessPoolExecutor (GH-6084) (#6092) https://github.com/python/cpython/commit/f216cbf9ab704da98146

[issue33056] LEaking files in concurrent.futures.process

2018-03-12 Thread miss-islington
Change by miss-islington : -- keywords: +patch pull_requests: +5854 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue33056] LEaking files in concurrent.futures.process

2018-03-12 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 095ee415cee41bf24c3a1108c23307e5baf168dd by Andrew Svetlov (Thomas Moreau) in branch 'master': bpo-33056 FIX leaking fd in concurrent.futures.ProcessPoolExecutor (#6084) https://github.com/python/cpython/commit/095ee415cee41bf24c3a1108c23307e5baf

[issue33056] LEaking files in concurrent.futures.process

2018-03-12 Thread Thomas Moreau
New submission from Thomas Moreau : The recent changes introduced by https://github.com/python/cpython/pull/3895 leaks some file descriptors (the Pipe open in _ThreadWakeup). They should be properly closed at shutdown. -- components: Library (Lib) messages: 313656 nosy: tomMoral priorit