()
| 88 | |
| 89 | |
| 90 | async def _default_template_ctx_processor() -> dict[str, Any]: |
| 91 | context = {} |
| 92 | if has_app_context(): |
| 93 | context["g"] = app_ctx.g |
| 94 | if has_request_context(): |
| 95 | context["request"] = request_ctx.request |
| 96 | context["session"] = request_ctx.session |
| 97 | return context |
| 98 | |
| 99 | |
| 100 | async def stream_template( |
nothing calls this directly
no test coverage detected
searching dependent graphs…