diff options
| author | Benjamin Peterson <benjamin@python.org> | 2014-04-10 04:15:34 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2014-04-10 04:15:34 (GMT) |
| commit | 8b4c7ed6eb075e6ebb479e64ee77820607d6d3b7 (patch) | |
| tree | 20350eb0d194c64a6409107abab7b11f427f24a5 /Lib/lib2to3/pgen2/token.py | |
| parent | d51374ed78a3e3145911a16cdf3b9b84b3ba7d15 (diff) | |
| parent | 4ab92c800a6f2b75743d4a0b4dfd9995723f3647 (diff) | |
| download | cpython-8b4c7ed6eb075e6ebb479e64ee77820607d6d3b7.zip cpython-8b4c7ed6eb075e6ebb479e64ee77820607d6d3b7.tar.gz cpython-8b4c7ed6eb075e6ebb479e64ee77820607d6d3b7.tar.bz2 | |
merge 3.4
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 6a6d0b6..7599396 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-- |
