summaryrefslogtreecommitdiff
path: root/pelican/cache.py
Commit message (Collapse)AuthorAgeFilesLines
* Convert super() calls to py3 styleDeniz Turgut2019-11-261-6/+3
|
* Initial pass of removing Python 2 supportKevin Yap2019-11-261-3/+1
| | | | | | This commit removes Six as a dependency for Pelican, replacing the relevant aliases with the proper Python 3 imports. It also removes references to Python 2 logic that did not require Six.
* fulfil pep8 standardderwinlu2015-08-171-5/+6
|
* fix cachingderwinlu2015-06-081-0/+140
* break out cache into cache.py * break out cache-tests into test_cache.py * fix broken cache tests * replace non existing assert calls with self.assertEqual * fix path for page caching test (was invalid) * cleanup test code * restructure generate_context in Article and Path Generator * destinguish between valid/invalid files correctly and cache accordingly * use cPickle if available for increased performance