http://hg.python.org/cpython/rev/b26056192653 changeset: 75803:b26056192653 user: Raymond Hettinger <python at rcn.com> date: Sat Mar 17 15:11:09 2012 -0700 summary: Fix whitespace files: Lib/functools.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/functools.py b/Lib/functools.py --- a/Lib/functools.py +++ b/Lib/functools.py @@ -196,7 +196,7 @@ 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 -- Repository URL: http://hg.python.org/cpython