Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. fastapi/routing.py

                )
            )
    
        def matches(self, scope: Scope) -> tuple[Match, Scope]:
            match, child_scope = super().matches(scope)
            if match != Match.NONE:
                child_scope["route"] = self
            return match, child_scope
    
    
    class APIRoute(routing.Route):
        def __init__(
            self,
            path: str,
            endpoint: Callable[..., Any],
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 174.6K bytes
    - Viewed (0)
Back to top