commit | bb5f48008db4572b370bdf02674c33d3c2efad3a | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon Mar 04 04:20:46 2013 -0500 |
committer | Raymond Hettinger <python@rcn.com> | Mon Mar 04 04:20:46 2013 -0500 |
tree | 9d8a2cd1feb223f6aaaccb54df232a0926f811fe | |
parent | 32e2ff5dc5f0c78c943e958c52feb0424ae94a1b [diff] | |
parent | 352cc8cfc38e0233b0a0051761afcfd842367b95 [diff] |
Merge
diff --git a/Lib/functools.py b/Lib/functools.py index 02bff42..9846a55 100644 --- a/Lib/functools.py +++ b/Lib/functools.py
@@ -308,7 +308,7 @@ last = root[PREV] link = [last, root, key, result] last[NEXT] = root[PREV] = cache[key] = link - full = (len(cache) == maxsize) + full = (len(cache) >= maxsize) misses += 1 return result