diff options
| author | 薛丞宏 <ihcaoe@gmail.com> | 2015-10-23 21:12:49 +0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-10-23 14:27:20 -0400 |
| commit | 2eab4acb3e523d296b3ed1e0374d2a40486e96cc (patch) | |
| tree | 90f829950651461c6265f561e0d71d3cbf7bdfe9 /docs/intro | |
| parent | ca46dc323b67ac90d0e8c8290b2bcb6d100c5118 (diff) | |
[1.9.x] Clarified that the test client response content attribute is bytes.
Backport of 484edc81c1ebd195c333f3ea8d3f9ca882a17837 from master
Diffstat (limited to 'docs/intro')
| -rw-r--r-- | docs/intro/tutorial05.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt index fe108d3db9..09c4ff2a96 100644 --- a/docs/intro/tutorial05.txt +++ b/docs/intro/tutorial05.txt @@ -367,7 +367,7 @@ With that ready, we can ask the client to do some work for us:: >>> response.status_code 200 >>> response.content - '\n\n\n <p>No polls are available.</p>\n\n' + b'\n\n\n <p>No polls are available.</p>\n\n' >>> # note - you might get unexpected results if your ``TIME_ZONE`` >>> # in ``settings.py`` is not correct. If you need to change it, >>> # you will also need to restart your shell session @@ -379,7 +379,7 @@ With that ready, we can ask the client to do some work for us:: >>> # check the response once again >>> response = client.get('/polls/') >>> response.content - '\n\n\n <ul>\n \n <li><a href="/polls/1/">Who is your favorite Beatle?</a></li>\n \n </ul>\n\n' + b'\n\n\n <ul>\n \n <li><a href="/polls/1/">Who is your favorite Beatle?</a></li>\n \n </ul>\n\n' >>> # If the following doesn't work, you probably omitted the call to >>> # setup_test_environment() described above >>> response.context['latest_question_list'] |
