commit | dcfcd146f8e6fc5c2fc16a4c192a0c5f5ca8c53c | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Jan 31 03:40:27 2019 -0800 |
committer | Ćukasz Langa <lukasz@langa.pl> | Thu Jan 31 12:40:27 2019 +0100 |
tree | 07829c4f286194d0e3d08151a26ef1f3494a849b | |
parent | d97daebfa69b4df95231bcae4123eacad6a48d14 [diff] [blame] |
bpo-35766: Merge typed_ast back into CPython (GH-11645)
diff --git a/Include/token.h b/Include/token.h index b87b84c..ef6bf96 100644 --- a/Include/token.h +++ b/Include/token.h
@@ -65,8 +65,10 @@ #define ELLIPSIS 52 #define COLONEQUAL 53 #define OP 54 -#define ERRORTOKEN 55 -#define N_TOKENS 59 +#define TYPE_IGNORE 55 +#define TYPE_COMMENT 56 +#define ERRORTOKEN 57 +#define N_TOKENS 61 #define NT_OFFSET 256 /* Special definitions for cooperation with parser */