Kaydet (Commit) d0845588 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

make _PyParser_TokenNames const

üst 5b02d688
...@@ -75,7 +75,7 @@ extern "C" { ...@@ -75,7 +75,7 @@ extern "C" {
#define ISEOF(x) ((x) == ENDMARKER) #define ISEOF(x) ((x) == ENDMARKER)
PyAPI_DATA(char *) _PyParser_TokenNames[]; /* Token names */ PyAPI_DATA(const char *) _PyParser_TokenNames[]; /* Token names */
PyAPI_FUNC(int) PyToken_OneChar(int); PyAPI_FUNC(int) PyToken_OneChar(int);
PyAPI_FUNC(int) PyToken_TwoChars(int, int); PyAPI_FUNC(int) PyToken_TwoChars(int, int);
PyAPI_FUNC(int) PyToken_ThreeChars(int, int, int); PyAPI_FUNC(int) PyToken_ThreeChars(int, int, int);
......
...@@ -47,7 +47,7 @@ static void tok_backup(struct tok_state *tok, int c); ...@@ -47,7 +47,7 @@ static void tok_backup(struct tok_state *tok, int c);
/* Token names */ /* Token names */
char *_PyParser_TokenNames[] = { const char *_PyParser_TokenNames[] = {
"ENDMARKER", "ENDMARKER",
"NAME", "NAME",
"NUMBER", "NUMBER",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment