Pops a particular indent from the stack, reverting to the previous.
(self)
| 66 | self.indent_by_.append(self.indent_by_[-1] + indent) |
| 67 | |
| 68 | def PopIndent(self): |
| 69 | """Pops a particular indent from the stack, reverting to the previous.""" |
| 70 | self.indent_by_.pop() |
| 71 | |
| 72 | def Line(self, line): |
| 73 | """Adds a line to self.lines, applying the indent.""" |
no test coverage detected