Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d6e7e73

Browse files
committed
Whitespace normalization.
1 parent 4b92a82 commit d6e7e73

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/copy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def _copy_immutable(x):
102102
for t in (type(None), int, long, float, bool, str, tuple,
103103
frozenset, type, xrange, types.ClassType,
104104
types.BuiltinFunctionType,
105-
types.FunctionType):
105+
types.FunctionType):
106106
d[t] = _copy_immutable
107107
for name in ("ComplexType", "UnicodeType", "CodeType"):
108108
t = getattr(types, name, None)

Misc/Vim/syntax_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ def foo(): pass
3333
() # Uncoloured
3434
all
3535
GeneratorExit
36-
trailing_whitespace = path
36+
trailing_whitespace = path

Misc/Vim/vim_syntax.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def fill_stmt(iterable, fill_len):
128128
"""Yield a string that fills at most fill_len characters with strings
129129
returned by 'iterable' and separated by a space"""
130130
# Deal with trailing char to handle ' '.join() calculation
131-
fill_len += 1
131+
fill_len += 1
132132
overflow = None
133133
it = iter(iterable)
134134
while True:

0 commit comments

Comments
 (0)