(self)
| 102 | self._maybe_close_transport() |
| 103 | |
| 104 | def process_exited(self): |
| 105 | self._process_exited = True |
| 106 | self._maybe_close_transport() |
| 107 | |
| 108 | def _maybe_close_transport(self): |
| 109 | if len(self._pipe_fds) == 0 and self._process_exited: |
nothing calls this directly
no test coverage detected