diff options
author | Georg Brandl <georg@python.org> | 2014-10-29 09:26:56 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-29 09:26:56 (GMT) |
commit | 525d355984e1afa342aa72fc7867a56eea937a61 (patch) | |
tree | 50a3fe6931bae07791ceab9bb74d76c1aa218296 /Doc/library/functools.rst | |
parent | 9bdcb3bc8a71b47ac93bf2d878e81790341d8cfb (diff) | |
download | cpython-525d355984e1afa342aa72fc7867a56eea937a61.zip cpython-525d355984e1afa342aa72fc7867a56eea937a61.tar.gz cpython-525d355984e1afa342aa72fc7867a56eea937a61.tar.bz2 |
Fixing broken links in doc, part 3: the rest
Diffstat (limited to 'Doc/library/functools.rst')
-rw-r--r-- | Doc/library/functools.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index 96645c3..7fd7d58 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -72,7 +72,7 @@ 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 - <http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used>`_ works + <http://en.wikipedia.org/wiki/Cache_algorithms#Examples>`_ 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 |