diff options
| author | Collin Anderson <cmawebsite@gmail.com> | 2022-05-05 15:23:54 -0400 |
|---|---|---|
| committer | Carlton Gibson <carlton@noumenal.es> | 2022-05-17 09:51:16 +0200 |
| commit | 2a5d2eefc751be012fdebd75d8177c42bf5a76fc (patch) | |
| tree | 26d3acbe663139679e8c4460f331c83666697871 /django/http | |
| parent | 97f124f39e363bf518fbe428320bdee63d56f8e0 (diff) | |
| download | django-2a5d2eefc751be012fdebd75d8177c42bf5a76fc.tar.gz | |
Fixed #33683 -- Document HttpResponseBase and allow import from django.http
Diffstat (limited to 'django/http')
| -rw-r--r-- | django/http/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py index 4c997154d9..87109059a3 100644 --- a/django/http/__init__.py +++ b/django/http/__init__.py @@ -11,6 +11,7 @@ from django.http.response import ( Http404, HttpResponse, HttpResponseBadRequest, + HttpResponseBase, HttpResponseForbidden, HttpResponseGone, HttpResponseNotAllowed, @@ -31,6 +32,7 @@ __all__ = [ "RawPostDataException", "UnreadablePostError", "HttpResponse", + "HttpResponseBase", "StreamingHttpResponse", "HttpResponseRedirect", "HttpResponsePermanentRedirect", |
