#ifndef Py_COMPILE_H1#define Py_COMPILE_H2#ifdef __cplusplus3extern "C" {4#endif56/* These definitions must match corresponding definitions in graminit.h. */7#define Py_single_input 2568#define Py_file_input 2579#define Py_eval_input 25810#define Py_func_type_input 3451112/* This doesn't need to match anything */13#define Py_fstring_input 8001415#ifndef Py_LIMITED_API16# define Py_CPYTHON_COMPILE_H17# include "cpython/compile.h"18# undef Py_CPYTHON_COMPILE_H19#endif2021#ifdef __cplusplus22}23#endif24#endif /* !Py_COMPILE_H */252627