mirror of
https://github.com/python/cpython.git
synced 2025-08-29 05:05:03 +00:00
Issue #9205: concurrent.futures.ProcessPoolExecutor now detects killed
children and raises BrokenProcessPool in such a situation. Previously it would reliably freeze/deadlock.
This commit is contained in:
parent
4a5e5de03f
commit
dd69649660
8 changed files with 587 additions and 107 deletions
|
@ -35,6 +35,7 @@
|
|||
import os
|
||||
import sys
|
||||
import signal
|
||||
import select
|
||||
|
||||
from multiprocessing import util, process
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue