(self)
| 1627 | _init_stderr_redirect() |
| 1628 | |
| 1629 | def check_output_redirect(self): |
| 1630 | global _global_redirect_stdout_to_server |
| 1631 | global _global_redirect_stderr_to_server |
| 1632 | |
| 1633 | if _global_redirect_stdout_to_server: |
| 1634 | _init_stdout_redirect() |
| 1635 | |
| 1636 | if _global_redirect_stderr_to_server: |
| 1637 | _init_stderr_redirect() |
| 1638 | |
| 1639 | def init_gui_support(self): |
| 1640 | if self._installed_gui_support: |
no test coverage detected