summaryrefslogtreecommitdiff
path: root/django/utils/lru_cache.py
AgeCommit message (Collapse)Author
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-08-08Updated Wikipedia links to use httpsClaude Paroz
2013-11-12Fixed typo in lru_cache.py; refs #21351.Vajrasky Kok
2013-11-11Fixed #21351 -- Replaced memoize with Python's lru_cache.Bouke Haarsma
Replaced the custom, untested memoize with a similar decorator from Python's 3.2 stdlib. Although some minor performance degradation (see ticket), it is expected that in the long run lru_cache will outperform memoize once it is implemented in C. Thanks to EvilDMP for the report and Baptiste Mispelon for the idea of replacing memoize with lru_cache.