diff options
author | Raymond Hettinger <python@rcn.com> | 2012-03-17 22:11:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2012-03-17 22:11:09 (GMT) |
commit | 7dabfede34bcef7a5d547adf2aabd02b9079d6c5 (patch) | |
tree | 8f7cae89b6d9919e064bbf8410b6150e26386d72 /Lib/functools.py | |
parent | 7e0c581c49b0945661089365160e0aef423dfba7 (diff) | |
download | cpython-7dabfede34bcef7a5d547adf2aabd02b9079d6c5.zip cpython-7dabfede34bcef7a5d547adf2aabd02b9079d6c5.tar.gz cpython-7dabfede34bcef7a5d547adf2aabd02b9079d6c5.tar.bz2 |
Fix whitespace
Diffstat (limited to 'Lib/functools.py')
-rw-r--r-- | Lib/functools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/functools.py b/Lib/functools.py index de30a92..331da3c 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 |