(self, request_url: str)
| 419 | self._active_invocations: Set[RouteHandlerInvocation] = set() |
| 420 | |
| 421 | def matches(self, request_url: str) -> bool: |
| 422 | return url_matches(self._base_url, request_url, self.url) |
| 423 | |
| 424 | async def handle(self, route: "Route") -> bool: |
| 425 | handler_invocation = RouteHandlerInvocation( |
no test coverage detected