All bytes written to stdin by the bounded reader.
(self)
| 104 | |
| 105 | @property |
| 106 | def stdin_bytes(self) -> bytes: |
| 107 | """All bytes written to stdin by the bounded reader.""" |
| 108 | return b"".join(c.args[0] for c in self.stdin.write.call_args_list if c.args) |
| 109 | |
| 110 | |
| 111 | def _make_ok_process( |
nothing calls this directly
no outgoing calls
no test coverage detected