diff options
| author | Vlastimil Zíma <vlastimil.zima@nic.cz> | 2015-07-09 17:27:07 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-07-13 19:22:39 -0400 |
| commit | 8f8c54f70bfa3aa8e311514297f1eeded2c32593 (patch) | |
| tree | 72eae0d9d26837e4cd43668b3e79b63b4c5ae129 /django/http/__init__.py | |
| parent | 6bdd3840be63582531c3125a26cd00294e6f8346 (diff) | |
Fixed #25099 -- Cleaned up HttpRequest representations in error reporting.
Diffstat (limited to 'django/http/__init__.py')
| -rw-r--r-- | django/http/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py index 254446ce99..00a303c11c 100644 --- a/django/http/__init__.py +++ b/django/http/__init__.py @@ -1,7 +1,6 @@ from django.http.cookie import SimpleCookie, parse_cookie from django.http.request import ( HttpRequest, QueryDict, RawPostDataException, UnreadablePostError, - build_request_repr, ) from django.http.response import ( BadHeaderError, FileResponse, Http404, HttpResponse, @@ -14,7 +13,7 @@ from django.http.utils import conditional_content_removal __all__ = [ 'SimpleCookie', 'parse_cookie', 'HttpRequest', 'QueryDict', - 'RawPostDataException', 'UnreadablePostError', 'build_request_repr', + 'RawPostDataException', 'UnreadablePostError', 'HttpResponse', 'StreamingHttpResponse', 'HttpResponseRedirect', 'HttpResponsePermanentRedirect', 'HttpResponseNotModified', 'HttpResponseBadRequest', 'HttpResponseForbidden', 'HttpResponseNotFound', |
