(self)
| 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"): |
nothing calls this directly
no test coverage detected