Whitespace normalization.
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py
index cb24060..17d3500 100644
--- a/Lib/test/test_compile.py
+++ b/Lib/test/test_compile.py
@@ -24,7 +24,7 @@
 print "testing complex args"
 
 def comp_args((a, b)):
-    print a,b  
+    print a,b
 
 comp_args((1, 2))
 
diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py
index 5cc1e69..5ff1beb 100644
--- a/Lib/test/test_minidom.py
+++ b/Lib/test/test_minidom.py
@@ -98,7 +98,7 @@
     else:
         print "dom.appendChild didn't raise HierarchyRequestErr"
 
-    nodemap = elem.attributes 
+    nodemap = elem.attributes
     try: nodemap.setNamedItem(text)
     except HierarchyRequestErr: pass
     else:
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index 3a20b2e..d77120e 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -87,4 +87,3 @@
         pass
     else:
         print 'Missing SyntaxError: "%s"' % statement
-
diff --git a/Lib/test/test_zlib.py b/Lib/test/test_zlib.py
index 3b78399..198f0d9 100644
--- a/Lib/test/test_zlib.py
+++ b/Lib/test/test_zlib.py
@@ -92,7 +92,7 @@
 # Test for the odd flushing bugs noted in 2.0, and hopefully fixed in 2.1
 
 import random
-random.seed(1)                          
+random.seed(1)
 
 print 'Testing on 17K of random data'
 
@@ -105,7 +105,7 @@
 a=""
 for i in range(17*1024):
     a=a+chr(random.randint(0,255))
-        
+
 # compress, sync-flush, and decompress
 t = d.decompress( c.compress(a)+c.flush(zlib.Z_SYNC_FLUSH) )