aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/request.py
diff options
context:
space:
mode:
authorTom Christie2013-05-07 05:08:28 -0700
committerTom Christie2013-05-07 05:08:28 -0700
commit5356af8651fccacf5524add33569dd84d9e78646 (patch)
tree8f7145c0a4cfeab61e1e523409b82091f44dfdbb /rest_framework/request.py
parent287ff43cdd85a5c2275205bf37e19dea3f69ad01 (diff)
parent0f00da848d9a8d25a0049231e9794da71a96662b (diff)
downloaddjango-rest-framework-5356af8651fccacf5524add33569dd84d9e78646.tar.bz2
Merge pull request #808 from tomchristie/2.3
2.3
Diffstat (limited to 'rest_framework/request.py')
-rw-r--r--rest_framework/request.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/rest_framework/request.py b/rest_framework/request.py
index ffbbab33..a434659c 100644
--- a/rest_framework/request.py
+++ b/rest_framework/request.py
@@ -1,11 +1,10 @@
"""
-The :mod:`request` module provides a :class:`Request` class used to wrap the standard `request`
-object received in all the views.
+The Request class is used as a wrapper around the standard request object.
The wrapped request then offers a richer API, in particular :
- content automatically parsed according to `Content-Type` header,
- and available as :meth:`.DATA<Request.DATA>`
+ and available as `request.DATA`
- full support of PUT method, including support for file uploads
- form overloading of HTTP method, content type and content
"""