()
| 59 | # |
| 60 | |
| 61 | def _cleanup(): |
| 62 | # check for processes which have finished |
| 63 | for p in list(_children): |
| 64 | if (child_popen := p._popen) and child_popen.poll() is not None: |
| 65 | _children.discard(p) |
| 66 | |
| 67 | # |
| 68 | # The `Process` class |
no test coverage detected
searching dependent graphs…