Write a sequence of strings to the file. Does not add separators.
(self, sequence: Iterable[Any])
| 1417 | self._buffer.write(to_write) |
| 1418 | |
| 1419 | async def writelines(self, sequence: Iterable[Any]) -> None: |
| 1420 | """Write a sequence of strings to the file. |
| 1421 | |
| 1422 | Does not add separators. |
| 1423 | """ |
| 1424 | for line in sequence: |
| 1425 | await self.write(line) |
| 1426 | |
| 1427 | def writeable(self) -> bool: |
| 1428 | return True |