(frame)
| 159 | |
| 160 | |
| 161 | def _is_jinja2_internal_function(frame): |
| 162 | return "self" in frame.f_locals and frame.f_locals["self"].__class__.__name__ in ( |
| 163 | "LoopContext", |
| 164 | "TemplateReference", |
| 165 | "Macro", |
| 166 | "BlockReference", |
| 167 | ) |
| 168 | |
| 169 | |
| 170 | def _find_jinja2_render_frame(frame): |