diff options
| author | Tom Christie | 2013-04-25 12:47:34 +0100 | 
|---|---|---|
| committer | Tom Christie | 2013-04-25 12:47:34 +0100 | 
| commit | 95abe6e8445f59f9e52609b0c54d9276830dbfd3 (patch) | |
| tree | b74d076e5d4e84d0ed8ead11843ad5e52b9da335 /rest_framework/request.py | |
| parent | b94da2468cdda6b0ad491574d35097d0e336ea7f (diff) | |
| download | django-rest-framework-95abe6e8445f59f9e52609b0c54d9276830dbfd3.tar.bz2 | |
Cleanup docstrings
Diffstat (limited to 'rest_framework/request.py')
| -rw-r--r-- | rest_framework/request.py | 5 | 
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  """ | 
