From 7dabfede34bcef7a5d547adf2aabd02b9079d6c5 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sat, 17 Mar 2012 15:11:09 -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 de30a921942..331da3c0c31 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -196,7 +196,7 @@ def lru_cache(maxsize=100, typed=False): def wrapper(*args, **kwds): # no caching, just do a statistics update after a successful call nonlocal misses - result = user_function(*args, **kwds) + result = user_function(*args, **kwds) misses += 1 return result