From 287de02764faf1662be93b47f1bb8f738cea6d5f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 10 Jan 2010 18:49:04 +0000 Subject: [PATCH] Fixed #11952 -- Documented HttpResponse.status_code attribute. Thanks, timo git-svn-id: http://code.djangoproject.com/svn/django/trunk@12187 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/request-response.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index 9dcf004149..1788e06baa 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -462,6 +462,10 @@ Attributes A normal Python string representing the content, encoded from a Unicode object if necessary. +.. attribute:: HttpResponse.status_code + + The `HTTP Status code`_ for the response. + Methods -------