(cls)
| 339 | |
| 340 | @classmethod |
| 341 | def _cleanup(cls) -> None: |
| 342 | for pid in list(cls._waiting.keys()): # make a copy |
| 343 | cls._try_cleanup_process(pid) |
| 344 | |
| 345 | @classmethod |
| 346 | def _try_cleanup_process(cls, pid: int) -> None: |
nothing calls this directly
no test coverage detected