Write a sequence of strings to the file. Does not add separators.
(self, sequence: Iterable[Any])
| 1405 | self._buffer.write(to_write) |
| 1406 | |
| 1407 | def writelines(self, sequence: Iterable[Any]) -> None: |
| 1408 | """Write a sequence of strings to the file. |
| 1409 | |
| 1410 | Does not add separators. |
| 1411 | """ |
| 1412 | for line in sequence: |
| 1413 | self.write(line) |
| 1414 | |
| 1415 | def writeable(self) -> bool: |
| 1416 | return True |