Pushes a particular indent onto the stack.
(self, indent)
| 62 | self.indent_by_ = [0] |
| 63 | |
| 64 | def PushIndent(self, indent): |
| 65 | """Pushes a particular indent onto the stack.""" |
| 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.""" |
no test coverage detected