From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 16 Sep 2019 18:55:04 +0000 (-0700) Subject: Doc: Fix Wikipedia link for functools.lru_cache (GH-16183) X-Git-Tag: v3.8.0rc1~87 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=917c622b537d770a8f513607165a5cce134b1dab;p=thirdparty%2FPython%2Fcpython.git Doc: Fix Wikipedia link for functools.lru_cache (GH-16183) (cherry picked from commit 336b3064d8981bc7f76c5cc6f6a0527df69771d6) Co-authored-by: amist --- diff --git a/Lib/functools.py b/Lib/functools.py index a674a685df65..b41dea79083f 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -499,7 +499,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) """