From 8ed96464e99c73150ab6eff5df70b6274a871a4a Mon Sep 17 00:00:00 2001 From: Vajrasky Kok Date: Wed, 13 Nov 2013 00:06:45 +0800 Subject: [PATCH] Fixed typo in lru_cache.py; refs #21351. --- django/utils/lru_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.