mirror of https://github.com/python/cpython.git
Regenerated token.py to account for new DOUBLESLASH and DOUBLESLASHEQUAL.
This commit is contained in:
parent
257b3bfa76
commit
a38d2608bc
|
@ -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--
|
||||
|
||||
|
|
Loading…
Reference in New Issue