(self, chunk)
| 3577 | self.write_code(code) |
| 3578 | |
| 3579 | def process_inline(self, chunk): |
| 3580 | if chunk[0] == '!': return '_str(%s)' % chunk[1:] |
| 3581 | return '_escape(%s)' % chunk |
| 3582 | |
| 3583 | def write_code(self, line, comment=''): |
| 3584 | line, comment = self.fix_backward_compatibility(line, comment) |