MCPcopy
hub / github.com/encode/starlette / handle

Method handle

starlette/routing.py:447–448  ·  view source on GitHub ↗
(self, scope: Scope, receive: Receive, send: Send)

Source from the content-addressed store, hash-verified

445 raise NoMatchFound(name, path_params)
446
447 async def handle(self, scope: Scope, receive: Receive, send: Send) -> None:
448 await self.app(scope, receive, send)
449
450 def __eq__(self, other: Any) -> bool:
451 return isinstance(other, Mount) and self.path == other.path and self.app == other.app

Callers

nothing calls this directly

Calls 1

appMethod · 0.45

Tested by

no test coverage detected