Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nested_context (0.07 sec)

  1. fastapi/routing.py

    
    def _merge_lifespan_context(
        original_context: Lifespan[Any], nested_context: Lifespan[Any]
    ) -> Lifespan[Any]:
        @asynccontextmanager
        async def merged_lifespan(
            app: AppType,
        ) -> AsyncIterator[Optional[Mapping[str, Any]]]:
            async with original_context(app) as maybe_original_state:
                async with nested_context(app) as maybe_nested_state:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 09:44:57 UTC 2024
    - 172.1K bytes
    - Viewed (0)
Back to top