(self, data: bytes)
| 438 | return res |
| 439 | |
| 440 | def writeorg(self, data: bytes) -> None: |
| 441 | self._assert_state("writeorg", ("started", "suspended")) |
| 442 | self._old.flush() |
| 443 | self._old.buffer.write(data) |
| 444 | self._old.buffer.flush() |
| 445 | |
| 446 | |
| 447 | class SysCapture(SysCaptureBase[str]): |
nothing calls this directly
no test coverage detected