diff options
| author | Tim Graham <timograham@gmail.com> | 2016-04-25 07:56:07 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-25 07:56:07 -0400 |
| commit | bb0b4b705b508451567bcada9106b91b8fca9e86 (patch) | |
| tree | e7239192a52349d084f621d7bf6ffe656447de80 /django/http/__init__.py | |
| parent | bd145e7209a0e628cced10384bd6f62d65c0f211 (diff) | |
Fixed #26052 -- Moved conditional_content_removal() processing to the test client.
Diffstat (limited to 'django/http/__init__.py')
| -rw-r--r-- | django/http/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py index 00a303c11c..491239bf8a 100644 --- a/django/http/__init__.py +++ b/django/http/__init__.py @@ -9,7 +9,6 @@ from django.http.response import ( HttpResponsePermanentRedirect, HttpResponseRedirect, HttpResponseServerError, JsonResponse, StreamingHttpResponse, ) -from django.http.utils import conditional_content_removal __all__ = [ 'SimpleCookie', 'parse_cookie', 'HttpRequest', 'QueryDict', @@ -19,5 +18,4 @@ __all__ = [ 'HttpResponseBadRequest', 'HttpResponseForbidden', 'HttpResponseNotFound', 'HttpResponseNotAllowed', 'HttpResponseGone', 'HttpResponseServerError', 'Http404', 'BadHeaderError', 'JsonResponse', 'FileResponse', - 'conditional_content_removal', ] |
