(self)
| 38 | self.lines = iter(lines) |
| 39 | |
| 40 | def readline(self): |
| 41 | line = next(self.lines) |
| 42 | print(line) |
| 43 | return line+'\n' |
| 44 | |
| 45 | class PdbTestInput(object): |
| 46 | """Context manager that makes testing Pdb in doctests easier.""" |
nothing calls this directly
no outgoing calls
no test coverage detected