aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/response.py
diff options
context:
space:
mode:
authorTom Christie2012-09-02 00:19:54 +0100
committerTom Christie2012-09-02 00:19:54 +0100
commit0ef6b1c122b0f5c3cc195b44a06671aefa75c9f7 (patch)
tree5d9093f622023c1cfdb45c99286017d914b413f5 /djangorestframework/response.py
parent73d337ea5dc09bfc8d1ca0c38a39f39f549577eb (diff)
downloaddjango-rest-framework-0ef6b1c122b0f5c3cc195b44a06671aefa75c9f7.tar.bz2
Remove mention of ImmediateResponse
Diffstat (limited to 'djangorestframework/response.py')
-rw-r--r--djangorestframework/response.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/djangorestframework/response.py b/djangorestframework/response.py
index f8a512d3..9dde1f01 100644
--- a/djangorestframework/response.py
+++ b/djangorestframework/response.py
@@ -9,11 +9,6 @@ To determine the content type to which it must render, default behaviour is to u
HTTP Accept header content negotiation. But `Response` also supports overriding the content type
by specifying an ``_accept=`` parameter in the URL. Also, `Response` will ignore `Accept` headers
from Internet Explorer user agents and use a sensible browser `Accept` header instead.
-
-
-`ImmediateResponse` is an exception that inherits from `Response`. It can be used
-to abort the request handling (i.e. ``View.get``, ``View.put``, ...),
-and immediately returning a response.
"""
from django.template.response import SimpleTemplateResponse