This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author patbuxton
Recipients patbuxton
Date 2019-12-19.13:19:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1576761583.89.0.930155685361.issue39098@roundup.psfhosted.org>
In-reply-to
Content
When shutting down a ProcessPoolExecutor with wait=False, an `OSError: handle is closed` is raised.

The error can be replicated with a script as simple as:

```
from concurrent.futures import ProcessPoolExecutor

e = ProcessPoolExecutor()
e.submit(id)
e.shutdown(wait=False)
History
Date User Action Args
2019-12-19 13:19:43patbuxtonsetrecipients: + patbuxton
2019-12-19 13:19:43patbuxtonsetmessageid: <1576761583.89.0.930155685361.issue39098@roundup.psfhosted.org>
2019-12-19 13:19:43patbuxtonlinkissue39098 messages
2019-12-19 13:19:43patbuxtoncreate