1 #ifndef _PY_LEXER_LEXER_H_ 2 #define _PY_LEXER_LEXER_H_ 3 4 #include "state.h" 5 6 int _PyLexer_update_fstring_expr(struct tok_state *tok, char cur); 7 8 int _PyTokenizer_Get(struct tok_state *, struct token *); 9 10 #endif 11