]> granicus.if.org Git - python/commitdiff
Regenerated token.py to account for new DOUBLESLASH and DOUBLESLASHEQUAL.
authorTim Peters <tim.peters@gmail.com>
Wed, 8 Aug 2001 06:35:56 +0000 (06:35 +0000)
committerTim Peters <tim.peters@gmail.com>
Wed, 8 Aug 2001 06:35:56 +0000 (06:35 +0000)
Lib/token.py

index 1c66f6d1cf345db12b19ed94ae413d76b4b5a495..eafbd7b2fe68c77b0e70c4c21bfe1f410bed1693 100755 (executable)
@@ -58,9 +58,11 @@ CIRCUMFLEXEQUAL = 44
 LEFTSHIFTEQUAL = 45
 RIGHTSHIFTEQUAL = 46
 DOUBLESTAREQUAL = 47
-OP = 48
-ERRORTOKEN = 49
-N_TOKENS = 50
+DOUBLESLASH = 48
+DOUBLESLASHEQUAL = 49
+OP = 50
+ERRORTOKEN = 51
+N_TOKENS = 52
 NT_OFFSET = 256
 #--end constants--