summaryrefslogtreecommitdiff
path: root/sphinx/pycode/pgen2/token.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/pycode/pgen2/token.py')
-rwxr-xr-xsphinx/pycode/pgen2/token.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/sphinx/pycode/pgen2/token.py b/sphinx/pycode/pgen2/token.py
index 55bf5e8d1..73718d166 100755
--- a/sphinx/pycode/pgen2/token.py
+++ b/sphinx/pycode/pgen2/token.py
@@ -57,13 +57,16 @@ DOUBLESTAREQUAL = 47
DOUBLESLASH = 48
DOUBLESLASHEQUAL = 49
AT = 50
-OP = 51
-COMMENT = 52
-NL = 53
-RARROW = 54
-ERRORTOKEN = 55
-ELLIPSIS = 56
-N_TOKENS = 57
+ATEQUAL = 51
+RARROW = 52
+ELLIPSIS = 53
+OP = 54
+AWAIT = 55
+ASYNC = 56
+COMMENT = 57
+NL = 58
+ERRORTOKEN = 59
+N_TOKENS = 60
NT_OFFSET = 256
#--end constants--