Indent a piece of text and append it, according to the current indentation level
(self, text="")
| 721 | self.write("\n") |
| 722 | |
| 723 | def fill(self, text=""): |
| 724 | """Indent a piece of text and append it, according to the current |
| 725 | indentation level""" |
| 726 | self.maybe_newline() |
| 727 | self.write(" " * self._indent + text) |
| 728 | |
| 729 | def write(self, *text): |
| 730 | """Add new source parts""" |
no test coverage detected