End the fake process's stdout, as the kernel does when it dies.
(self)
| 167 | await self._stdout_send.send(data) |
| 168 | |
| 169 | def close_stdout(self) -> None: |
| 170 | """End the fake process's stdout, as the kernel does when it dies.""" |
| 171 | self._stdout_send.close() |
| 172 | |
| 173 | def exit(self, code: int = 0) -> None: |
| 174 | """Die: set the exit code and EOF stdout, as the kernel does.""" |
no test coverage detected