]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Sun, 26 Feb 2006 04:21:50 +0000 (04:21 +0000)
committerTim Peters <tim.peters@gmail.com>
Sun, 26 Feb 2006 04:21:50 +0000 (04:21 +0000)
Lib/copy.py
Misc/Vim/syntax_test.py
Misc/Vim/vim_syntax.py

index 9e60144cc153bf1fe0ef88c798aed955ef4e0419..35c666f7dc0fa7aba77e89d42a213cb0000911c9 100644 (file)
@@ -102,7 +102,7 @@ def _copy_immutable(x):
 for t in (type(None), int, long, float, bool, str, tuple,
           frozenset, type, xrange, types.ClassType,
           types.BuiltinFunctionType,
-         types.FunctionType):
+          types.FunctionType):
     d[t] = _copy_immutable
 for name in ("ComplexType", "UnicodeType", "CodeType"):
     t = getattr(types, name, None)
index 67b3199f5d351949b927618042fe5894b1e6e54b..74f3bef5427e7b2ed99f73184540479d1442e58d 100644 (file)
@@ -33,4 +33,4 @@ ur'unicode raw'
 ()  # Uncoloured
 all
 GeneratorExit
-trailing_whitespace = path 
+trailing_whitespace = path
index b733929faae03aa64d5833ee33ff8be4ecf55ab1..a4df48564680a1a22e01c8e8a4f01389905a5994 100644 (file)
@@ -128,7 +128,7 @@ def fill_stmt(iterable, fill_len):
     """Yield a string that fills at most fill_len characters with strings
     returned by 'iterable' and separated by a space"""
     # Deal with trailing char to handle ' '.join() calculation
-    fill_len += 1  
+    fill_len += 1
     overflow = None
     it = iter(iterable)
     while True: