MCPcopy
hub / github.com/django/django / GET

Method GET

django/core/handlers/wsgi.py:86–89  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

84
85 @cached_property
86 def GET(self):
87 # The WSGI spec says 'QUERY_STRING' may be absent.
88 raw_query_string = get_bytes_from_wsgi(self.environ, "QUERY_STRING", "")
89 return QueryDict(raw_query_string, encoding=self._encoding)
90
91 def _get_post(self):
92 if not hasattr(self, "_post"):

Callers

nothing calls this directly

Calls 2

QueryDictClass · 0.90
get_bytes_from_wsgiFunction · 0.85

Tested by

no test coverage detected