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

index de30a92194246f613d991ed3f73ea8b516a25e89..331da3c0c31f4d3e075cc831260e4c29e5ad5b69 100644 (file)
@@ -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