diff options
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/testing/tools.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt index 43255fa589..10945cc070 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -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 |
