Outdent by step.
(self, step=1)
| 347 | self._indentation += 1 |
| 348 | |
| 349 | def outdent(self, step=1): |
| 350 | """Outdent by step.""" |
| 351 | self._indentation -= step |
| 352 | |
| 353 | def start_write(self, frame, node=None): |
| 354 | """Yield or write into the frame buffer.""" |
no outgoing calls
no test coverage detected