diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-10-24 15:21:52 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-10-24 15:21:52 (GMT) |
commit | d0845588b811823a580eb9e775b44af946ba771e (patch) | |
tree | 1757b42f7a73e8c0f62f82e1beca9a72b716fc6d /Include/token.h | |
parent | 5b02d68863cd4baba9b256dd4925f9aeb2804d94 (diff) | |
download | cpython-d0845588b811823a580eb9e775b44af946ba771e.zip cpython-d0845588b811823a580eb9e775b44af946ba771e.tar.gz cpython-d0845588b811823a580eb9e775b44af946ba771e.tar.bz2 |
make _PyParser_TokenNames const
Diffstat (limited to 'Include/token.h')
-rw-r--r-- | Include/token.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/token.h b/Include/token.h index f7f6504..905022b 100644 --- a/Include/token.h +++ b/Include/token.h @@ -75,7 +75,7 @@ extern "C" { #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_TwoChars(int, int); PyAPI_FUNC(int) PyToken_ThreeChars(int, int, int); |