diff options
author | Raymond Hettinger <python@rcn.com> | 2010-11-30 07:13:04 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-11-30 07:13:04 +0000 |
commit | 5e20bab42277d29aac36a011fe12d292ec5ab389 (patch) | |
tree | 8fc98d12e80971bc672035711ebbfcfd4ac02945 /Doc/library/functools.rst | |
parent | 7921b9f2104fee46413798d0a82a1e822f061957 (diff) | |
download | cpython-git-5e20bab42277d29aac36a011fe12d292ec5ab389.tar.gz |
Neaten-up a bit.
Diffstat (limited to 'Doc/library/functools.rst')
-rw-r--r-- | Doc/library/functools.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst index a8fc8569a1..5b65874035 100644 --- a/Doc/library/functools.rst +++ b/Doc/library/functools.rst @@ -72,10 +72,10 @@ The :mod:`functools` module defines the following functions: A `LRU (least recently used) cache <http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used>`_ - is indicated when the pattern of calls changes over time, such as - when more recent calls are the best predictors of upcoming calls + works best when more recent calls are the best predictors of upcoming calls (for example, the most popular articles on a news server tend to - change every day). + change each day). The cache's size limit assurs that caching does not + grow without bound on long-running processes such as web servers. .. versionadded:: 3.2 |