(self, eval_ctx=None)
| 517 | fields = ('data',) |
| 518 | |
| 519 | def as_const(self, eval_ctx=None): |
| 520 | eval_ctx = get_eval_context(self, eval_ctx) |
| 521 | if eval_ctx.volatile: |
| 522 | raise Impossible() |
| 523 | if eval_ctx.autoescape: |
| 524 | return Markup(self.data) |
| 525 | return self.data |
| 526 | |
| 527 | |
| 528 | class Tuple(Literal): |
nothing calls this directly
no test coverage detected