End the writing process started by `start_write`.
(self, frame)
| 358 | self.writeline('%s.append(' % frame.buffer, node) |
| 359 | |
| 360 | def end_write(self, frame): |
| 361 | """End the writing process started by `start_write`.""" |
| 362 | if frame.buffer is not None: |
| 363 | self.write(')') |
| 364 | |
| 365 | def simple_write(self, s, frame, node=None): |
| 366 | """Simple shortcut for start_write + write + end_write.""" |
no test coverage detected