(self, value)
| 289 | ], [])) |
| 290 | |
| 291 | def quote(self, value): |
| 292 | if value.token_type == 'comment': |
| 293 | return str(value) |
| 294 | return str(value).replace('\\', '\\\\').replace( |
| 295 | '(', r'\(').replace( |
| 296 | ')', r'\)') |
| 297 | |
| 298 | @property |
| 299 | def content(self): |