module documentation

Undocumented

Class ​Dbm​Cache​Storage Undocumented
Class ​Dummy​Policy Undocumented
Class ​Filesystem​Cache​Storage No class docstring; 0/4 instance variable, 2/7 methods documented
Class ​RFC2616​Policy Undocumented
Variable logger Undocumented
Function parse​_cachecontrol Parse Cache-Control header
Function rfc1123​_to​_epoch Undocumented
logger =

Undocumented

def parse_cachecontrol(header):

Parse Cache-Control header

https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9

>>> parse_cachecontrol(b'public, max-age=3600') == {b'public': None,
...                                                 b'max-age': b'3600'}
True
>>> parse_cachecontrol(b'') == {}
True
def rfc1123_to_epoch(date_str):

Undocumented