Regenerated token.py to account for new DOUBLESLASH and DOUBLESLASHEQUAL.

This commit is contained in:
Tim Peters 2001-08-08 06:35:56 +00:00
parent 257b3bfa76
commit a38d2608bc
1 changed files with 5 additions and 3 deletions

View File

@ -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--