From 2c2f577ca4154903b45f382da35f0f572676bc05 Mon Sep 17 00:00:00 2001 From: Allen Guo Date: Sun, 10 May 2020 23:43:56 -0400 Subject: [PATCH] Fix Wikipedia link --- Doc/library/functools.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index 856c1c790ae361..f4216a812a785e 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -132,11 +132,11 @@ The :mod:`functools` module defines the following functions: bypassing the cache, or for rewrapping the function with a different cache. An `LRU (least recently used) cache - `_ works - best when the most recent calls are the best predictors of upcoming calls (for - example, the most popular articles on a news server tend to change each day). - The cache's size limit assures that the cache does not grow without bound on - long-running processes such as web servers. + `_ + works best when the most recent calls are the best predictors of upcoming + calls (for example, the most popular articles on a news server tend to + change each day). The cache's size limit assures that the cache does not + grow without bound on long-running processes such as web servers. In general, the LRU cache should only be used when you want to reuse previously computed values. Accordingly, it doesn't make sense to cache