Opened 18 years ago
Last modified 18 years ago
#3875 closed
Addition of HttpResponseBadRequest (HTTP Status code 400) — at Initial Version
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
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)
file containing the patch