Undocumented
Class | DbmCacheStorage |
Undocumented |
Class | DummyPolicy |
Undocumented |
Class | FilesystemCacheStorage |
No class docstring; 0/4 instance variable, 2/7 methods documented |
Class | RFC2616Policy |
Undocumented |
Variable | logger |
Undocumented |
Function | parse_cachecontrol |
Parse Cache-Control header |
Function | rfc1123_to_epoch |
Undocumented |
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