Whitespace normalization.
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py
index 86f1b9b..27de46f 100644
--- a/Lib/test/test_tokenize.py
+++ b/Lib/test/test_tokenize.py
@@ -33,7 +33,7 @@
 COMMENT     '# NEWLINE'   (3, 17) (3, 26)
 NEWLINE     '\\n'          (3, 26) (3, 27)
 DEDENT      ''            (4, 0) (4, 0)
-                                                    
+
 
 There will be a bunch more tests of specific source patterns.
 
@@ -43,7 +43,7 @@
 There are some standard formatting practices that are easy to get right.
 
 >>> roundtrip("if x == 1:\\n"
-...           "    print x\\n")               
+...           "    print x\\n")
 if x == 1:
     print x
 
@@ -53,7 +53,7 @@
 
 >>> roundtrip("if   x  ==  1  :  \\n"
 ...           "  print x\\n")
-if   x  ==  1  :  
+if   x  ==  1  :
   print x
 
 Comments need to go in the right place.