MCPcopy Create free account
hub / github.com/fastapi/fastapi / _iter_low_priority_routes

Method _iter_low_priority_routes

fastapi/routing.py:2752–2758  ·  view source on GitHub ↗
(
        self,
    )

Source from the content-addressed store, hash-verified

2750 return Match.NONE, {}
2751
2752 def _iter_low_priority_routes(
2753 self,
2754 ) -> Iterator[BaseRoute | _EffectiveRouteContext]:
2755 yield from self._low_priority_routes
2756 for route in self.routes:
2757 if isinstance(route, _IncludedRouter):
2758 yield from route.effective_low_priority_routes()
2759
2760 def _match_low_priority(
2761 self, scope: Scope

Callers 1

_match_low_priorityMethod · 0.95

Calls 1

Tested by

no test coverage detected