summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authoramist <amistern0@gmail.com>2019-09-16 18:36:14 (GMT)
committerStéphane Wirtel <stephane@wirtel.be>2019-09-16 18:36:14 (GMT)
commit336b3064d8981bc7f76c5cc6f6a0527df69771d6 (patch)
treed35601bed3bd73ec620fbb8545a1fe76b41bdf06 /Lib
parent8debfa50407107ff2329d01081cdc12d359f1d12 (diff)
downloadcpython-336b3064d8981bc7f76c5cc6f6a0527df69771d6.zip
cpython-336b3064d8981bc7f76c5cc6f6a0527df69771d6.tar.gz
cpython-336b3064d8981bc7f76c5cc6f6a0527df69771d6.tar.bz2
Doc: Fix Wikipedia link for functools.lru_cache (GH-16183)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/functools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/functools.py b/Lib/functools.py
index f87d9c5..3192bd0 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)
"""