(
self,
path_info: str | None = None,
method: str | None = None,
return_rule: t.Literal[False] = False,
query_args: t.Mapping[str, t.Any] | str | None = None,
websocket: bool | None = None,
)
| 471 | |
| 472 | @t.overload |
| 473 | def match( |
| 474 | self, |
| 475 | path_info: str | None = None, |
| 476 | method: str | None = None, |
| 477 | return_rule: t.Literal[False] = False, |
| 478 | query_args: t.Mapping[str, t.Any] | str | None = None, |
| 479 | websocket: bool | None = None, |
| 480 | ) -> tuple[t.Any, t.Mapping[str, t.Any]]: ... |
| 481 | |
| 482 | @t.overload |
| 483 | def match( |