diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-04-10 04:12:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-04-10 04:12:47 (GMT) |
commit | da952f3ff43aad1a4602b1bf6e93fd24f0a159f6 (patch) | |
tree | d5cda607871a335b01a66c097a15c59778bddaec /Lib/lib2to3/pgen2/token.py | |
parent | c177b1cbf354e67f43dab6cf2705aa5a814e6bc0 (diff) | |
download | cpython-da952f3ff43aad1a4602b1bf6e93fd24f0a159f6.zip cpython-da952f3ff43aad1a4602b1bf6e93fd24f0a159f6.tar.gz cpython-da952f3ff43aad1a4602b1bf6e93fd24f0a159f6.tar.bz2 |
add matrix multiplication operator support to 2to3
Diffstat (limited to 'Lib/lib2to3/pgen2/token.py')
-rwxr-xr-x | Lib/lib2to3/pgen2/token.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Lib/lib2to3/pgen2/token.py b/Lib/lib2to3/pgen2/token.py index 61468b3..5fac5ce 100755 --- a/Lib/lib2to3/pgen2/token.py +++ b/Lib/lib2to3/pgen2/token.py @@ -57,12 +57,13 @@ DOUBLESTAREQUAL = 47 DOUBLESLASH = 48 DOUBLESLASHEQUAL = 49 AT = 50 -OP = 51 -COMMENT = 52 -NL = 53 -RARROW = 54 -ERRORTOKEN = 55 -N_TOKENS = 56 +ATEQUAL = 51 +OP = 52 +COMMENT = 53 +NL = 54 +RARROW = 55 +ERRORTOKEN = 56 +N_TOKENS = 57 NT_OFFSET = 256 #--end constants-- |