From cb33e553ee537da4915f9055f8cdf9bf32113aed Mon Sep 17 00:00:00 2001 From: Vasiliy Faronov Date: Mon, 2 May 2016 15:35:05 +0300 Subject: [1.9.x] Fixed #26567 -- Updated references to obsolete RFC2616. Didn't touch comments where it wasn't obvious that the code adhered to the newer standard. Backport of ac77c55bc5fc54cd763a7ae426784650a8cc97c9 from master --- django/http/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/http/utils.py') 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: -- cgit v1.3