diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2015-01-13 11:29:07 -0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-28 06:59:40 -0500 |
| commit | 24b2bc635e23e4235f51095fbe099beec27a65c8 (patch) | |
| tree | 5800921109f8f30dccc5ee62516796a35512b646 /docs/ref/request-response.txt | |
| parent | 0f3ea8c0bc9c7f7f5e448b0b2137bc6351f5eae3 (diff) | |
Fixed #24137 -- Switched to HTTP reason phrases from Python stdlib.
Diffstat (limited to 'docs/ref/request-response.txt')
| -rw-r--r-- | docs/ref/request-response.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index 41e6d3dcdc..ffe2bf4cd3 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -629,6 +629,13 @@ Attributes The HTTP reason phrase for the response. + .. versionchanged:: 1.9 + + ``reason_phrase`` no longer defaults to all capital letters. It now + uses the `HTTP standard's`_ default reason phrases. + + .. _`HTTP standard's`: https://www.ietf.org/rfc/rfc2616.txt + .. attribute:: HttpResponse.streaming This is always ``False``. @@ -980,6 +987,13 @@ Attributes The HTTP reason phrase for the response. + .. versionchanged:: 1.9 + + ``reason_phrase`` no longer defaults to all capital letters. It now + uses the `HTTP standard's`_ default reason phrases. + + .. _`HTTP standard's`: https://www.ietf.org/rfc/rfc2616.txt + .. attribute:: StreamingHttpResponse.streaming This is always ``True``. |
