diff options
| author | amist <amistern0@gmail.com> | 2019-09-16 21:36:14 +0300 |
|---|---|---|
| committer | Stéphane Wirtel <stephane@wirtel.be> | 2019-09-16 20:36:14 +0200 |
| commit | 336b3064d8981bc7f76c5cc6f6a0527df69771d6 (patch) | |
| tree | d35601bed3bd73ec620fbb8545a1fe76b41bdf06 /Lib/functools.py | |
| parent | 8debfa50407107ff2329d01081cdc12d359f1d12 (diff) | |
| download | cpython-git-336b3064d8981bc7f76c5cc6f6a0527df69771d6.tar.gz | |
Doc: Fix Wikipedia link for functools.lru_cache (GH-16183)
Diffstat (limited to 'Lib/functools.py')
| -rw-r--r-- | Lib/functools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/functools.py b/Lib/functools.py index f87d9c5718..3192bd02d9 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -482,7 +482,7 @@ def lru_cache(maxsize=128, typed=False): with f.cache_info(). Clear the cache and statistics with f.cache_clear(). Access the underlying function with f.__wrapped__. - See: http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used + See: http://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU) """ |
