Whether actively capturing -- not suspended or stopped.
(self)
| 589 | self.in_.done() |
| 590 | |
| 591 | def is_started(self) -> bool: |
| 592 | """Whether actively capturing -- not suspended or stopped.""" |
| 593 | return self._state == "started" |
| 594 | |
| 595 | def readouterr(self) -> CaptureResult[AnyStr]: |
| 596 | out = self.out.snap() if self.out else "" |
no outgoing calls
no test coverage detected