Commit 7a80a9fa authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Fixed #8546 -- Fixed error in request-response.txt where we were incorrectly...

Fixed #8546 -- Fixed error in request-response.txt where we were incorrectly listing HttpResponse.content() in the 'Methods' section instead of the 'Attributes' section. Thanks, schmichael

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9054 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 26a9ac49
Loading
Loading
Loading
Loading
+8 −6
Original line number Diff line number Diff line
@@ -433,6 +433,14 @@ this is how you might return a Microsoft Excel spreadsheet::
There's nothing Django-specific about the ``Content-Disposition`` header, but
it's easy to forget the syntax, so we've included it here.

Attributes
----------

.. attribute:: HttpResponse.content

    A normal Python string representing the content, encoded from a Unicode
    object if necessary.

Methods
-------

@@ -502,12 +510,6 @@ Methods
    values you used in ``set_cookie()`` -- otherwise the cookie may not be
    deleted.

.. method:: HttpResponse.content()

    Returns the content as a Python string, encoding it from a Unicode object
    if necessary. Note this is a property, not a method, so use ``r.content``
    instead of ``r.content()``.

.. method:: HttpResponse.write(content)

    This method makes an :class:`HttpResponse` instance a file-like object.