]> granicus.if.org Git - python/commitdiff
Localize one more builtin lookup.
authorRaymond Hettinger <python@rcn.com>
Sat, 14 Aug 2010 22:29:52 +0000 (22:29 +0000)
committerRaymond Hettinger <python@rcn.com>
Sat, 14 Aug 2010 22:29:52 +0000 (22:29 +0000)
Lib/functools.py

index 815386b8ab9a09fa9186d9a27d0d8dafa7acb7db..f6ae4f4a64365e2948b0399311f65be05ff1a413 100644 (file)
@@ -119,7 +119,8 @@ def lfu_cache(maxsize=100):
     http://en.wikipedia.org/wiki/Cache_algorithms#Least-Frequently_Used
 
     """
-    def decorating_function(user_function, tuple=tuple, sorted=sorted, len=len):
+    def decorating_function(user_function, tuple=tuple, sorted=sorted,
+                            len=len, KeyError=KeyError):
         cache = {}                      # mapping of args to results
         use_count = Counter()           # times each key has been accessed
         kwd_mark = object()             # separate positional and keyword args
@@ -170,7 +171,8 @@ def lru_cache(maxsize=100):
     http://en.wikipedia.org/wiki/Cache_algorithms#Least_Recently_Used
 
     """
-    def decorating_function(user_function, tuple=tuple, sorted=sorted, len=len):
+    def decorating_function(user_function, tuple=tuple, sorted=sorted,
+                            len=len, KeyError=KeyError):
         cache = OrderedDict()           # ordered least recent to most recent
         kwd_mark = object()             # separate positional and keyword args
         lock = Lock()