1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-24 06:03:45 +00:00

fixes a link in comment

This commit is contained in:
Anubhav Patel 2019-04-09 17:52:02 +05:30
parent d346b8cb0f
commit 4cfdc14974

View File

@ -70,7 +70,7 @@ class RFC2616Policy(object):
return True
def should_cache_response(self, response, request):
# What is cacheable - https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec14.9.1
# What is cacheable - https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.1
# Response cacheability - https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.4
# Status code 206 is not included because cache can not deal with partial contents
cc = self._parse_cachecontrol(response)