diff options
Diffstat (limited to 'django/http')
| -rw-r--r-- | django/http/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/utils.py b/django/http/utils.py index 3ea71cb892..b3074f65f9 100644 --- a/django/http/utils.py +++ b/django/http/utils.py @@ -12,7 +12,7 @@ Functions that modify an HTTP request or response in some way. def conditional_content_removal(request, response): """ Removes the content of responses for HEAD requests, 1xx, 204 and 304 - responses. Ensures compliance with RFC 2616, section 4.3. + responses. Ensures compliance with RFC 7230, section 3.3.3. """ if 100 <= response.status_code < 200 or response.status_code in (204, 304): if response.streaming: |
