Skip to content

Commit

Permalink
Whitespace normalization.
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-one committed Feb 26, 2006
1 parent 4b92a82 commit d6e7e73
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Lib/copy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Misc/Vim/syntax_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ def foo(): pass
() # Uncoloured
all
GeneratorExit
trailing_whitespace = path
trailing_whitespace = path
2 changes: 1 addition & 1 deletion Misc/Vim/vim_syntax.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d6e7e73

Please sign in to comment.