Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for fastapi_inner_astack (0.08 seconds)

  1. fastapi/dependencies/utils.py

        async_exit_stack: AsyncExitStack,
        embed_body_fields: bool,
    ) -> SolvedDependency:
        request_astack = request.scope.get("fastapi_inner_astack")
        assert isinstance(request_astack, AsyncExitStack), (
            "fastapi_inner_astack not found in request scope"
        )
        function_astack = request.scope.get("fastapi_function_astack")
        assert isinstance(function_astack, AsyncExitStack), (
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 27 12:54:56 GMT 2025
    - 37.6K bytes
    - Click Count (3)
  2. fastapi/routing.py

            # Solve dependencies and run path operation function, auto-closing dependencies
            errors: list[Any] = []
            async_exit_stack = request.scope.get("fastapi_inner_astack")
            assert isinstance(async_exit_stack, AsyncExitStack), (
                "fastapi_inner_astack not found in request scope"
            )
            solved_result = await solve_dependencies(
                request=request,
                dependant=dependant,
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 27 12:54:56 GMT 2025
    - 174.6K bytes
    - Click Count (0)
Back to Top