Combination of newline and write.
(self, x, node=None, extra=0)
| 395 | self.stream.write(x) |
| 396 | |
| 397 | def writeline(self, x, node=None, extra=0): |
| 398 | """Combination of newline and write.""" |
| 399 | self.newline(node, extra) |
| 400 | self.write(x) |
| 401 | |
| 402 | def newline(self, node=None, extra=0): |
| 403 | """Add one or more newlines before the next write.""" |
no test coverage detected