Adds a "; " delimiter if it isn't the start of generated source
(self)
| 87 | self.write("\n") |
| 88 | |
| 89 | def maybe_semicolon(self): |
| 90 | """Adds a "; " delimiter if it isn't the start of generated source""" |
| 91 | if self._source: |
| 92 | self.write("; ") |
| 93 | |
| 94 | def fill(self, text="", *, allow_semicolon=True): |
| 95 | """Indent a piece of text and append it, according to the current |