Opened 17 years ago

Last modified 17 years ago

#3875 closed

Addition of HttpResponseBadRequest (HTTP Status code 400) — at Initial Version

Reported by: Scott Barr <scott@…> 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)

Change History (1)

by Scott Barr <scott@…>, 17 years ago

Attachment: patch.txt added

file containing the patch

Note: See TracTickets for help on using tickets.
Back to Top