Method
handle
starlette/routing.py:509–510
· starlette/routing.py::Host.handle
(self, scope: Scope, receive: Receive, send: Send)
Source from the content-addressed store, hash-verified
| 507 | raise NoMatchFound(name, path_params) |
| 508 | |
| 509 | async def handle(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 510 | await self.app(scope, receive, send) |
| 511 | |
| 512 | def __eq__(self, other: Any) -> bool: |
| 513 | return isinstance(other, Host) and self.host == other.host and self.app == other.app |
Tested by
no test coverage detected