Whitespace normalization.
diff --git a/Lib/test/test_compiler.py b/Lib/test/test_compiler.py
index d9a3cb8..32302a1 100644
--- a/Lib/test/test_compiler.py
+++ b/Lib/test/test_compiler.py
@@ -35,7 +35,7 @@
 
     def testNewClassSyntax(self):
         compiler.compile("class foo():pass\n\n","<string>","exec")
-        
+
     def testLineNo(self):
         # Test that all nodes except Module have a correct lineno attribute.
         filename = __file__
diff --git a/Lib/test/test_parser.py b/Lib/test/test_parser.py
index bd81aca..205c406 100644
--- a/Lib/test/test_parser.py
+++ b/Lib/test/test_parser.py
@@ -129,7 +129,7 @@
 
     def test_class_defs(self):
         self.check_suite("class foo():pass")
-        
+
     def test_import_from_statement(self):
         self.check_suite("from sys.path import *")
         self.check_suite("from sys.path import dirname")