Clarified that the test client response content attribute is bytes.

This commit is contained in:
薛丞宏 2015-10-23 21:12:49 +08:00 committed by Tim Graham
parent 89359347c4
commit 484edc81c1
3 changed files with 6 additions and 6 deletions

View file

@ -54,7 +54,7 @@ Web pages::
200
>>> response = c.get('/customer/details/')
>>> response.content
'<!DOCTYPE html...'
b'<!DOCTYPE html...'
As this example suggests, you can instantiate ``Client`` from within a session
of the Python interactive interpreter.
@ -433,8 +433,8 @@ Specifically, a ``Response`` object has the following attributes:
.. attribute:: content
The body of the response, as a string. This is the final page content as
rendered by the view, or any error message.
The body of the response, as a bytestring. This is the final page
content as rendered by the view, or any error message.
.. attribute:: context