use the more idomatic (and Py3k faster) while True
diff --git a/Lib/tokenize.py b/Lib/tokenize.py
index fdc5cbf..31366de 100644
--- a/Lib/tokenize.py
+++ b/Lib/tokenize.py
@@ -337,7 +337,7 @@
 
     if encoding is not None:
         yield (ENCODING, encoding, (0, 0), (0, 0), '')
-    while 1:                                   # loop over lines in stream
+    while True:             # loop over lines in stream
         try:
             line = readline()
         except StopIteration: