Fixed typo in lru_cache.py; refs #21351.

This commit is contained in:
Vajrasky Kok 2013-11-13 00:06:45 +08:00 committed by Baptiste Mispelon
parent bc742ca110
commit 8ed96464e9
1 changed files with 1 additions and 1 deletions

View File

@ -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.