Adds a newline if it isn't the start of generated source
(self)
| 716 | self.interleave(lambda: self.write(", "), traverser, items) |
| 717 | |
| 718 | def maybe_newline(self): |
| 719 | """Adds a newline if it isn't the start of generated source""" |
| 720 | if self._source: |
| 721 | self.write("\n") |
| 722 | |
| 723 | def fill(self, text=""): |
| 724 | """Indent a piece of text and append it, according to the current |
no test coverage detected