diff options
| author | markotibold | 2011-05-19 19:36:30 +0200 |
|---|---|---|
| committer | markotibold | 2011-05-19 19:36:30 +0200 |
| commit | 82c4ca96126cfedd4a8471452d956e8bb432ba5b (patch) | |
| tree | f92502c69a826b6f0cea24a3054c3e893122dc36 /djangorestframework/response.py | |
| parent | e7f8c06dbbbc9e4ae91327ee02cd8147777b17e2 (diff) | |
| download | django-rest-framework-82c4ca96126cfedd4a8471452d956e8bb432ba5b.tar.bz2 | |
The core is now documented from the docstrings in the source.
Diffstat (limited to 'djangorestframework/response.py')
| -rw-r--r-- | djangorestframework/response.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/djangorestframework/response.py b/djangorestframework/response.py index 72bc16c8..f6bbe3be 100644 --- a/djangorestframework/response.py +++ b/djangorestframework/response.py @@ -1,3 +1,10 @@ +""" +The :mod:`response` module provides Response classes you can use in your +views to return a certain HTTP response. Typically a response is *rendered* +into a HTTP response depending on what renderers are set on your view and +als depending on the accept header of the request. +""" + from django.core.handlers.wsgi import STATUS_CODE_TEXT __all__ = ('Response', 'ErrorResponse') |
