(input)
| 158 | |
| 159 | def test_readline(self): |
| 160 | def getreader(input): |
| 161 | stream = io.BytesIO(input.encode(self.encoding)) |
| 162 | return codecs.getreader(self.encoding)(stream) |
| 163 | |
| 164 | def readalllines(input, keepends=True, size=None): |
| 165 | reader = getreader(input) |
no test coverage detected