/* Auto-generated by Tools/build/generate_token.py */ #include "Python.h" #include "pycore_token.h" /* Token names */ const char * const _PyParser_TokenNames[] = …; /* Return the token corresponding to a single character */ int _PyToken_OneChar(int c1) { … } int _PyToken_TwoChars(int c1, int c2) { … } int _PyToken_ThreeChars(int c1, int c2, int c3) { … }