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-Tag: v3.9.0a1~414 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=336b3064d8981bc7f76c5cc6f6a0527df69771d6;p=thirdparty%2FPython%2Fcpython.git Doc: Fix Wikipedia link for functools.lru_cache (GH-16183) --- diff --git a/Lib/functools.py b/Lib/functools.py index f87d9c571873..3192bd02d93e 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) """