diff options
| author | Vajrasky Kok <sky.kok@speaklikeaking.com> | 2013-11-13 00:06:45 +0800 |
|---|---|---|
| committer | Baptiste Mispelon <bmispelon@gmail.com> | 2013-11-12 18:45:35 +0100 |
| commit | 8ed96464e99c73150ab6eff5df70b6274a871a4a (patch) | |
| tree | 8e75d06e540f5d7c6be7e45bb8443b68efa87856 | |
| parent | bc742ca110ca06b220261d37b985ecbfb7ebbaab (diff) | |
Fixed typo in lru_cache.py; refs #21351.
| -rw-r--r-- | django/utils/lru_cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/lru_cache.py b/django/utils/lru_cache.py index d60a373743..2ad69e66ba 100644 --- a/django/utils/lru_cache.py +++ b/django/utils/lru_cache.py @@ -2,7 +2,7 @@ try: from functools import lru_cache except ImportError: - # backport of Python's 3.2 lru_cache, written by Raymond Hettinger and + # backport of Python's 3.3 lru_cache, written by Raymond Hettinger and # licensed under MIT license, from: # <http://code.activestate.com/recipes/578078-py26-and-py30-backport-of-python-33s-lru-cache/> # Should be removed when Django only supports Python 3.2 and above. |
