(self, testgen)
| 64 | Used by the mock_input decorator. |
| 65 | """ |
| 66 | def __init__(self, testgen): |
| 67 | self.testgen = testgen |
| 68 | self.exception = None |
| 69 | self.ip = get_ipython() |
| 70 | |
| 71 | def __enter__(self): |
| 72 | self.orig_prompt_for_code = self.ip.prompt_for_code |
nothing calls this directly
no test coverage detected