From: Raymond Hettinger Date: Fri, 16 Mar 2012 18:48:12 +0000 (-0700) Subject: Minor code cleanup. X-Git-Tag: v3.3.0a2~143 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d656958915de825f1c1f298fb8183555141e4956;p=python Minor code cleanup. --- diff --git a/Lib/functools.py b/Lib/functools.py index af24f423a2..4dd5913e0d 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -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: