From: Raymond Hettinger Date: Sat, 17 Mar 2012 22:11:09 +0000 (-0700) Subject: Fix whitespace X-Git-Tag: v3.3.0a2~115 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7dabfede34bcef7a5d547adf2aabd02b9079d6c5;p=thirdparty%2FPython%2Fcpython.git Fix whitespace --- diff --git a/Lib/functools.py b/Lib/functools.py index de30a9219424..331da3c0c31f 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