(self, in_: bool = False)
| 786 | self._global_capturing.resume_capturing() |
| 787 | |
| 788 | def suspend_global_capture(self, in_: bool = False) -> None: |
| 789 | if self._global_capturing is not None: |
| 790 | self._global_capturing.suspend_capturing(in_=in_) |
| 791 | |
| 792 | def suspend(self, in_: bool = False) -> None: |
| 793 | # Need to undo local capsys-et-al if it exists before disabling global capture. |