Kaydet (Commit) 202d1ad3 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Fix whitespace

üst d37fb559
......@@ -175,7 +175,7 @@ def lru_cache(maxsize=100, typed=False):
# simple caching without ordering or size limit
nonlocal hits, misses
key = make_key(args, kwds, typed) if kwds or typed else args
result = cache_get(key, root) # root used here as a unique not-found sentinel
result = cache_get(key, root) # root used here as a unique not-found sentinel
if result is not root:
hits += 1
return result
......
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