(self, value)
| 282 | ], [])) |
| 283 | |
| 284 | def quote(self, value): |
| 285 | if value.token_type == 'comment': |
| 286 | return str(value) |
| 287 | return str(value).replace('\\', '\\\\').replace( |
| 288 | '(', r'\(').replace( |
| 289 | ')', r'\)') |
| 290 | |
| 291 | @property |
| 292 | def content(self): |