aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/response.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangorestframework/response.py')
-rw-r--r--djangorestframework/response.py7
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')