]> granicus.if.org Git - python/commitdiff
Doc: Fix Wikipedia link for functools.lru_cache (GH-16183)
authoramist <amistern0@gmail.com>
Mon, 16 Sep 2019 18:36:14 +0000 (21:36 +0300)
committerStéphane Wirtel <stephane@wirtel.be>
Mon, 16 Sep 2019 18:36:14 +0000 (20:36 +0200)
Lib/functools.py

index f87d9c571873adc79415725848a2d8c1174f24af..3192bd02d93e56b7cadb25ad05fd7aff1960b7e0 100644 (file)
@@ -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)
 
     """