summaryrefslogtreecommitdiff
path: root/django/http/__init__.py
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-06-29 15:41:57 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-06-29 18:49:36 +0200
commit8b9b8d3bda09eb1b447631182d06c6c5e51425f6 (patch)
treeb32519d4d91f5c60e72a284345fcf2487afc66c7 /django/http/__init__.py
parent59b0c48ce27951048146358739baf08056c5e821 (diff)
Removed compatibility code for streaming responses.
This code provided a deprecation path for old-style streaming responses. Refs #6527, #7581.
Diffstat (limited to 'django/http/__init__.py')
-rw-r--r--django/http/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py
index 46afa34ee7..be7b24b2e2 100644
--- a/django/http/__init__.py
+++ b/django/http/__init__.py
@@ -2,9 +2,9 @@ from django.http.cookie import SimpleCookie, parse_cookie
from django.http.request import (HttpRequest, QueryDict, UnreadablePostError,
build_request_repr)
from django.http.response import (HttpResponse, StreamingHttpResponse,
- CompatibleStreamingHttpResponse, HttpResponsePermanentRedirect,
- HttpResponseRedirect, HttpResponseNotModified, HttpResponseBadRequest,
- HttpResponseForbidden, HttpResponseNotFound, HttpResponseNotAllowed,
- HttpResponseGone, HttpResponseServerError, Http404, BadHeaderError)
+ HttpResponseRedirect, HttpResponsePermanentRedirect,
+ HttpResponseNotModified, HttpResponseBadRequest, HttpResponseForbidden,
+ HttpResponseNotFound, HttpResponseNotAllowed, HttpResponseGone,
+ HttpResponseServerError, Http404, BadHeaderError)
from django.http.utils import (fix_location_header, conditional_content_removal,
fix_IE_for_attach, fix_IE_for_vary)