(frame)
| 279 | |
| 280 | |
| 281 | def _get_jinja2_template_debug_info(frame): |
| 282 | frame_globals = frame.f_globals |
| 283 | |
| 284 | jinja_template = frame_globals.get("__jinja_template__") |
| 285 | |
| 286 | if jinja_template is None: |
| 287 | return None |
| 288 | |
| 289 | return _get_frame_lineno_mapping(jinja_template) |
| 290 | |
| 291 | |
| 292 | def _get_frame_lineno_mapping(jinja_template): |
no test coverage detected