Whether actively capturing -- not suspended or stopped.
(self)
| 699 | self.in_.done() |
| 700 | |
| 701 | def is_started(self) -> bool: |
| 702 | """Whether actively capturing -- not suspended or stopped.""" |
| 703 | return self._state == "started" |
| 704 | |
| 705 | def readouterr(self) -> CaptureResult[AnyStr]: |
| 706 | out = self.out.snap() if self.out else "" |
no outgoing calls
no test coverage detected