Commit a38d2608 authored by Tim Peters's avatar Tim Peters

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

parent 257b3bfa
...@@ -58,9 +58,11 @@ CIRCUMFLEXEQUAL = 44 ...@@ -58,9 +58,11 @@ CIRCUMFLEXEQUAL = 44
LEFTSHIFTEQUAL = 45 LEFTSHIFTEQUAL = 45
RIGHTSHIFTEQUAL = 46 RIGHTSHIFTEQUAL = 46
DOUBLESTAREQUAL = 47 DOUBLESTAREQUAL = 47
OP = 48 DOUBLESLASH = 48
ERRORTOKEN = 49 DOUBLESLASHEQUAL = 49
N_TOKENS = 50 OP = 50
ERRORTOKEN = 51
N_TOKENS = 52
NT_OFFSET = 256 NT_OFFSET = 256
#--end constants-- #--end constants--
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment