commit | 38d17e3df030e443653b8999a2e3ccf12968c9ae | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Sep 02 09:44:28 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Sep 02 09:44:28 2010 +0000 |
tree | f96308bd8939a4bc9eef6cbf7beb33f56a8563eb | |
parent | ccb90e3ccd60bc0156905510074dce84e5b1272c [diff] [blame] |
Speed-up cache updates
diff --git a/Lib/functools.py b/Lib/functools.py index 1bbc520..f9e35d8 100644 --- a/Lib/functools.py +++ b/Lib/functools.py
@@ -139,8 +139,7 @@ try: with lock: result = cache[key] - del cache[key] - cache[key] = result # record recent use of this key + cache._move_to_end(key) # record recent use of this key wrapper.hits += 1 except KeyError: result = user_function(*args, **kwds)