Ticket #3362: httpresponsenocontent.2.patch
File httpresponsenocontent.2.patch, 621 bytes (added by , 18 years ago) |
---|
-
django/http/__init__.py
253 253 raise Exception, "This %s instance cannot tell its position" % self.__class__ 254 254 return sum([len(chunk) for chunk in self._container]) 255 255 256 class HttpResponseNoContent(HttpResponse): 257 def __init__(self): 258 HttpResponse.__init__(self) 259 self.status_code = 204 260 256 261 class HttpResponseRedirect(HttpResponse): 257 262 def __init__(self, redirect_to): 258 263 HttpResponse.__init__(self)