(self, input)
| 46 | """Context manager that makes testing Pdb in doctests easier.""" |
| 47 | |
| 48 | def __init__(self, input): |
| 49 | self.input = input |
| 50 | |
| 51 | def __enter__(self): |
| 52 | self.real_stdin = sys.stdin |
nothing calls this directly
no outgoing calls
no test coverage detected