(self, lines)
| 35 | constructor; they should not have trailing newlines. |
| 36 | """ |
| 37 | def __init__(self, lines): |
| 38 | self.lines = iter(lines) |
| 39 | |
| 40 | def readline(self): |
| 41 | line = next(self.lines) |
nothing calls this directly
no outgoing calls
no test coverage detected