(self, string)
| 1157 | self.indent -= 2 |
| 1158 | |
| 1159 | def Print(self, string): |
| 1160 | print("%s%s" % (self._IndentString(), string)) |
| 1161 | |
| 1162 | def PrintLines(self, lines): |
| 1163 | indent = self._IndentString() |
nothing calls this directly
no test coverage detected