Doc: Fix Wikipedia link for functools.lru_cache (GH-16183)

This commit is contained in:
amist 2019-09-16 21:36:14 +03:00 committed by Stéphane Wirtel
parent 8debfa5040
commit 336b3064d8
1 changed files with 1 additions and 1 deletions

View 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)
"""