MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / match

Method match

thirdparty/bottle/bottle.py:852–856  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

850 run(self, **kwargs)
851
852 def match(self, environ):
853 """ Search for a matching route and return a (:class:`Route`, urlargs)
854 tuple. The second value is a dictionary with parameters extracted
855 from the URL. Raise :exc:`HTTPError` (404/405) on a non-match."""
856 return self.router.match(environ)
857
858 def get_url(self, routename, **kargs):
859 """ Return a string that matches a named route """

Callers

nothing calls this directly

Calls 1

matchMethod · 0.45

Tested by

no test coverage detected