(self, in_: bool = False)
| 678 | self._global_capturing.suspend_capturing(in_=in_) |
| 679 | |
| 680 | def suspend(self, in_: bool = False) -> None: |
| 681 | # Need to undo local capsys-et-al if it exists before disabling global capture. |
| 682 | self.suspend_fixture() |
| 683 | self.suspend_global_capture(in_) |
| 684 | |
| 685 | def resume(self) -> None: |
| 686 | self.resume_global_capture() |