Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ASGI (0.05 sec)

  1. fastapi/applications.py

                    """
                ),
                deprecated(
                    """
                    "openapi_prefix" has been deprecated in favor of "root_path", which
                    follows more closely the ASGI standard, is simpler, and more
                    automatic.
                    """
                ),
            ] = "",
            root_path: Annotated[
                str,
                Doc(
                    """
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 17 04:52:31 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  2. fastapi/routing.py

                async with nested_context(app) as maybe_nested_state:
                    if maybe_nested_state is None and maybe_original_state is None:
                        yield None  # old ASGI compatibility
                    else:
                        yield {**(maybe_nested_state or {}), **(maybe_original_state or {})}
    
        return merged_lifespan  # type: ignore[return-value]
    
    
    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