summaryrefslogtreecommitdiff
path: root/django/http/__init__.py
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-05-12 07:28:07 -0400
committerFlorian Apolloner <florian@apolloner.eu>2014-05-14 10:18:26 +0200
commit7fef18ba9e5a8b47bc24b5bb259c8bf3d3879f2a (patch)
tree69c1ede3b8a3d552f56618132ac6186c7a17b14f /django/http/__init__.py
parent50f228ae7c7d5eb68c1544423dcb3dfa31f2dc74 (diff)
[1.7.x] Dropped fix_IE_for_vary/attach.
This is a security fix. Disclosure following shortly.
Diffstat (limited to 'django/http/__init__.py')
-rw-r--r--django/http/__init__.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py
index 5895c5e3ce..fc5bd180ad 100644
--- a/django/http/__init__.py
+++ b/django/http/__init__.py
@@ -6,8 +6,7 @@ from django.http.response import (HttpResponse, StreamingHttpResponse,
HttpResponseNotModified, HttpResponseBadRequest, HttpResponseForbidden,
HttpResponseNotFound, HttpResponseNotAllowed, HttpResponseGone,
HttpResponseServerError, Http404, BadHeaderError, JsonResponse)
-from django.http.utils import (fix_location_header,
- conditional_content_removal, fix_IE_for_attach, fix_IE_for_vary)
+from django.http.utils import fix_location_header, conditional_content_removal
__all__ = [
'SimpleCookie', 'parse_cookie', 'HttpRequest', 'QueryDict',
@@ -17,5 +16,5 @@ __all__ = [
'HttpResponseBadRequest', 'HttpResponseForbidden', 'HttpResponseNotFound',
'HttpResponseNotAllowed', 'HttpResponseGone', 'HttpResponseServerError',
'Http404', 'BadHeaderError', 'fix_location_header', 'JsonResponse',
- 'conditional_content_removal', 'fix_IE_for_attach', 'fix_IE_for_vary',
+ 'conditional_content_removal',
]