diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-04-11 16:15:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-11 16:15:51 (GMT) |
commit | d08972fdb92cad6b813d22205752c97ea18df060 (patch) | |
tree | e5c7f912380d8896a70f1c2d6d0f8f9994bdc4f8 /Lib/token.py | |
parent | c4b695f85e141f57d22d8edf7bc2c756da136918 (diff) | |
download | cpython-d08972fdb92cad6b813d22205752c97ea18df060.zip cpython-d08972fdb92cad6b813d22205752c97ea18df060.tar.gz cpython-d08972fdb92cad6b813d22205752c97ea18df060.tar.bz2 |
bpo-33260: Regenerate token.py after removing ASYNC and AWAIT. (GH-6447)
Diffstat (limited to 'Lib/token.py')
-rw-r--r-- | Lib/token.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Lib/token.py b/Lib/token.py index 091f80b..ba13205 100644 --- a/Lib/token.py +++ b/Lib/token.py @@ -65,14 +65,12 @@ RARROW = 51 ELLIPSIS = 52 # Don't forget to update the table _PyParser_TokenNames in tokenizer.c! OP = 53 -AWAIT = 54 -ASYNC = 55 -ERRORTOKEN = 56 +ERRORTOKEN = 54 # These aren't used by the C tokenizer but are needed for tokenize.py -COMMENT = 57 -NL = 58 -ENCODING = 59 -N_TOKENS = 60 +COMMENT = 55 +NL = 56 +ENCODING = 57 +N_TOKENS = 58 # Special definitions for cooperation with parser NT_OFFSET = 256 #--end constants-- |