(self, stdout=True, stderr=True, display=True)
| 128 | display = True |
| 129 | |
| 130 | def __init__(self, stdout=True, stderr=True, display=True): |
| 131 | self.stdout = stdout |
| 132 | self.stderr = stderr |
| 133 | self.display = display |
| 134 | self.shell = None |
| 135 | |
| 136 | def __enter__(self): |
| 137 | from IPython.core.getipython import get_ipython |
nothing calls this directly
no outgoing calls
no test coverage detected