(self)
| 1775 | await route.handle(scope, receive, send) |
| 1776 | |
| 1777 | def effective_route_contexts(self) -> Iterator[_EffectiveRouteContext]: |
| 1778 | for candidate in self.effective_candidates(): |
| 1779 | if isinstance(candidate, _IncludedRouter): |
| 1780 | yield from candidate.effective_route_contexts() |
| 1781 | else: |
| 1782 | yield candidate |
| 1783 | |
| 1784 | def url_path_for(self, name: str, /, **path_params: Any) -> Any: |
| 1785 | for route_context in self.effective_route_contexts(): |