From: amist Date: Mon, 16 Sep 2019 18:36:14 +0000 (+0300) Subject: Doc: Fix Wikipedia link for functools.lru_cache (GH-16183) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=336b3064d8981bc7f76c5cc6f6a0527df69771d6;p=python Doc: Fix Wikipedia link for functools.lru_cache (GH-16183) --- 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) """