(self)
| 53 | sys.stdout = io.stdout = pydevd_io.IOBuf() |
| 54 | |
| 55 | def restore_stdout(self): |
| 56 | from IPython.utils import io |
| 57 | |
| 58 | io.stdout = sys.stdout = self.original_stdout |
| 59 | |
| 60 | |
| 61 | @pytest.mark.skipif(not has_ipython, reason="IPython not available") |
no outgoing calls
no test coverage detected