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: # # Should be removed when Django only supports Python 3.2 and above.