| 463 | return obj, first |
| 464 | |
| 465 | class SandboxedFormatter(SandboxedFormatterMixin, Formatter): |
| 466 | |
| 467 | def __init__(self, env): |
| 468 | SandboxedFormatterMixin.__init__(self, env) |
| 469 | Formatter.__init__(self) |
| 470 | |
| 471 | class SandboxedEscapeFormatter(SandboxedFormatterMixin, EscapeFormatter): |
| 472 |