Search for a matching route and return a (:class:`Route` , urlargs) tuple. The second value is a dictionary with parameters extracted from the URL. Raise :exc:`HTTPError` (404/405) on a non-match.
(self, environ)
| 761 | run(self, **kwargs) |
| 762 | |
| 763 | def match(self, environ): |
| 764 | """ Search for a matching route and return a (:class:`Route` , urlargs) |
| 765 | tuple. The second value is a dictionary with parameters extracted |
| 766 | from the URL. Raise :exc:`HTTPError` (404/405) on a non-match.""" |
| 767 | return self.router.match(environ) |
| 768 | |
| 769 | def get_url(self, routename, **kargs): |
| 770 | """ Return a string that matches a named route """ |