From: Raymond Hettinger Date: Sat, 17 Mar 2012 00:05:17 +0000 (-0700) Subject: Fix whitespace X-Git-Tag: v3.3.0a2~137 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=202d1ad3f6063758cddfbc596d2ad9f1efab5920;p=thirdparty%2FPython%2Fcpython.git Fix whitespace --- diff --git a/Lib/functools.py b/Lib/functools.py index 3eb55c6458b1..19b761391812 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