From 336b3064d8981bc7f76c5cc6f6a0527df69771d6 Mon Sep 17 00:00:00 2001 From: amist Date: Mon, 16 Sep 2019 21:36:14 +0300 Subject: [PATCH] Doc: Fix Wikipedia link for functools.lru_cache (GH-16183) --- Lib/functools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/functools.py b/Lib/functools.py index f87d9c57187..3192bd02d93 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) """