Opened 18 years ago
Closed 18 years ago
#3875 closed (fixed)
Addition of HttpResponseBadRequest (HTTP Status code 400)
Reported by: | Owned by: | Jacob | |
---|---|---|---|
Component: | Uncategorized | Version: | dev |
Severity: | Keywords: | httpresponse bad request 400 | |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
The following is a patch to add a class called HttpResponseBadRequest to django.http
Purpose of this class is to provide a HTTP status code 400.
Index: django/http/__init__.py =================================================================== --- django/http/__init__.py (revision 4839) +++ django/http/__init__.py (working copy) @@ -291,6 +291,11 @@ HttpResponse.__init__(self, *args, **kwargs) self.status_code = 410 +class HttpResponseBadRequest(HttpResponse): + def __init__(self, *args, **kwargs): + HttpResponse.__init__(self, *args, **kwargs) + self.status_code = 400 + class HttpResponseServerError(HttpResponse): def __init__(self, *args, **kwargs): HttpResponse.__init__(self, *args, **kwargs)
Attachments (1)
Change History (4)
by , 18 years ago
comment:1 by , 18 years ago
Triage Stage: | Unreviewed → Ready for checkin |
---|
comment:3 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
file containing the patch