Raised when a process in a ProcessPoolExecutor terminated abruptly while a future was in the running state.
| 635 | |
| 636 | |
| 637 | class BrokenProcessPool(_base.BrokenExecutor): |
| 638 | """ |
| 639 | Raised when a process in a ProcessPoolExecutor terminated abruptly |
| 640 | while a future was in the running state. |
| 641 | """ |
| 642 | |
| 643 | _TERMINATE = "terminate" |
| 644 | _KILL = "kill" |
no outgoing calls
no test coverage detected
searching dependent graphs…