Commit d6569589 authored by Raymond Hettinger's avatar Raymond Hettinger

Minor code cleanup.

parent 01feaecb
......@@ -156,6 +156,7 @@ def lru_cache(maxsize=100, typed=False):
lock = Lock() # needed because linkedlist isn't threadsafe
root = [] # root of circular doubly linked list
root[:] = [root, root, None, None] # initialize by pointing to self
PREV, NEXT, KEY, RESULT = 0, 1, 2, 3 # names of link fields
if maxsize is None:
@wraps(user_function)
......@@ -191,8 +192,6 @@ def lru_cache(maxsize=100, typed=False):
key += tuple(map(type, args))
if kwds:
key += tuple(type(v) for k, v in sorted_items)
PREV = 0 # names of link fields
NEXT = 1
with lock:
link = cache_get(key)
if link is not None:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment