(self, data: str)
| 456 | return res |
| 457 | |
| 458 | def writeorg(self, data: str) -> None: |
| 459 | self._assert_state("writeorg", ("started", "suspended")) |
| 460 | self._old.write(data) |
| 461 | self._old.flush() |
| 462 | |
| 463 | |
| 464 | class FDCaptureBase(CaptureBase[AnyStr]): |
nothing calls this directly
no test coverage detected