(self, timeout: float | None = None)
| 98 | self.wait = MagicMock(side_effect=self._wait) |
| 99 | |
| 100 | def _wait(self, timeout: float | None = None) -> int: |
| 101 | if self._wait_exc is not None: |
| 102 | raise self._wait_exc |
| 103 | return self._returncode |
| 104 | |
| 105 | @property |
| 106 | def stdin_bytes(self) -> bytes: |
nothing calls this directly
no outgoing calls
no test coverage detected