]> granicus.if.org Git - python/commitdiff
Fix whitespace
authorRaymond Hettinger <python@rcn.com>
Sat, 17 Mar 2012 00:05:17 +0000 (17:05 -0700)
committerRaymond Hettinger <python@rcn.com>
Sat, 17 Mar 2012 00:05:17 +0000 (17:05 -0700)
Lib/functools.py

index 3eb55c6458b1065cfc59d69659220e6432c1b0a3..19b7613918121b90256e7cea6639ff85e3dd9de7 100644 (file)
@@ -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