Write a list of lines to the stream. Line separators are not added, so it is usual for each of the lines provided to have a line separator at the end.
(self, lines)
| 577 | return lines |
| 578 | |
| 579 | def writelines(self, lines): |
| 580 | """Write a list of lines to the stream. |
| 581 | |
| 582 | Line separators are not added, so it is usual for each of the lines |
| 583 | provided to have a line separator at the end. |
| 584 | """ |
| 585 | self._checkClosed() |
| 586 | for line in lines: |
| 587 | self.write(line) |
| 588 | |
| 589 | io.IOBase.register(IOBase) |
| 590 |
nothing calls this directly
no test coverage detected