Whitespace normalization.
diff --git a/Lib/test/test_compiler.py b/Lib/test/test_compiler.py
index 1d77318..183efb5 100644
--- a/Lib/test/test_compiler.py
+++ b/Lib/test/test_compiler.py
@@ -50,9 +50,9 @@
def _check_lineno(self, node):
if not node.__class__ in NOLINENO:
- self.assert_(isinstance(node.lineno, int),
+ self.assert_(isinstance(node.lineno, int),
"lineno=%s on %s" % (node.lineno, node.__class__))
- self.assert_(node.lineno > 0,
+ self.assert_(node.lineno > 0,
"lineno=%s on %s" % (node.lineno, node.__class__))
for child in node.getChildNodes():
self.check_lineno(child)
@@ -84,12 +84,12 @@
yo = 3
else:
yo += 3
-
+
try:
a += b
finally:
b = 0
-
+
###############################################################################
def test_main():
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py
index 9e5fe0d..07bc63b 100644
--- a/Lib/test/test_re.py
+++ b/Lib/test/test_re.py
@@ -104,7 +104,7 @@
self.assertEqual(re.sub('x', r'\400', 'x'), '\0')
self.assertEqual(re.sub('x', r'\777', 'x'), '\377')
-
+
self.assertRaises(re.error, re.sub, 'x', r'\1', 'x')
self.assertRaises(re.error, re.sub, 'x', r'\8', 'x')
self.assertRaises(re.error, re.sub, 'x', r'\9', 'x')