(self)
| 288 | self._isstdin = False |
| 289 | |
| 290 | def readline(self): |
| 291 | while True: |
| 292 | line = self._readline() |
| 293 | if line: |
| 294 | self._filelineno += 1 |
| 295 | return line |
| 296 | if not self._file: |
| 297 | return line |
| 298 | self.nextfile() |
| 299 | # repeat with next file |
| 300 | |
| 301 | def _readline(self): |
| 302 | if not self._files: |