[Python-checkins] cpython: Fix whitespace

raymond.hettinger python-checkins at python.org
Sat Mar 17 23:12:16 CET 2012


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


More information about the Python-checkins mailing list