MCPcopy
hub / github.com/tornadoweb/tornado / get

Method get

tornado/web.py:2695–2703  ·  view source on GitHub ↗
(self, *args: Any, **kwargs: Any)

Source from the content-addressed store, hash-verified

2693 self._permanent = permanent
2694
2695 def get(self, *args: Any, **kwargs: Any) -> None:
2696 to_url = self._url.format(*args, **kwargs)
2697 if self.request.query_arguments:
2698 # TODO: figure out typing for the next line.
2699 to_url = httputil.url_concat(
2700 to_url,
2701 list(httputil.qs_to_qsl(self.request.query_arguments)), # type: ignore
2702 )
2703 self.redirect(to_url, permanent=self._permanent)
2704
2705
2706class StaticFileHandler(RequestHandler):

Callers 15

set_statusMethod · 0.45
_get_argumentsMethod · 0.45
create_signed_valueMethod · 0.45
send_errorMethod · 0.45
write_errorMethod · 0.45
get_browser_localeMethod · 0.45
get_template_pathMethod · 0.45
xsrf_tokenMethod · 0.45
_get_raw_xsrf_tokenMethod · 0.45
check_xsrf_cookieMethod · 0.45
static_urlMethod · 0.45
require_settingMethod · 0.45

Calls 2

formatMethod · 0.80
redirectMethod · 0.80

Tested by

no test coverage detected