(self)
| 548 | self._state = "suspended" |
| 549 | |
| 550 | def resume(self) -> None: |
| 551 | self._assert_state("resume", ("started", "suspended")) |
| 552 | if self._state == "started": |
| 553 | return |
| 554 | self.syscapture.resume() |
| 555 | os.dup2(self.tmpfile.fileno(), self.targetfd) |
| 556 | self._state = "started" |
| 557 | |
| 558 | |
| 559 | class FDCaptureBinary(FDCaptureBase[bytes]): |
nothing calls this directly
no test coverage detected