(self)
| 421 | self.__file.write(string) |
| 422 | |
| 423 | def readline(self) -> str: |
| 424 | self.__line += 1 |
| 425 | line = self.__file.readline() |
| 426 | if isinstance(line, bytes): |
| 427 | line = line.decode("utf-8") |
| 428 | return line.strip() |
| 429 | |
| 430 | @property |
| 431 | def line_number(self): |
no outgoing calls
no test coverage detected