From 202d1ad3f6063758cddfbc596d2ad9f1efab5920 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Fri, 16 Mar 2012 17:05:17 -0700 Subject: [PATCH] Fix whitespace --- Lib/functools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/functools.py b/Lib/functools.py index 3eb55c6458..19b7613918 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -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 -- 2.50.1