Commit 728e92f0 by Tom Christie

Add request.QUERY_PARAMS

parent 6fc5581a
...@@ -101,6 +101,13 @@ class Request(object): ...@@ -101,6 +101,13 @@ class Request(object):
return self._stream return self._stream
@property @property
def QUERY_PARAMS(self):
"""
More semantically correct name for request.GET.
"""
return self._request.GET
@property
def DATA(self): def DATA(self):
""" """
Parses the request body and returns the data. Parses the request body and returns the data.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment