1#ifndef Py_COMPILE_H
2#define Py_COMPILE_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7/* These definitions must match corresponding definitions in graminit.h. */
8#define Py_single_input 256
9#define Py_file_input 257
10#define Py_eval_input 258
11#define Py_func_type_input 345
12
13#ifndef Py_LIMITED_API
14# define Py_CPYTHON_COMPILE_H
15# include "cpython/compile.h"
16# undef Py_CPYTHON_COMPILE_H
17#endif
18
19#ifdef __cplusplus
20}
21#endif
22#endif /* !Py_COMPILE_H */
23

source code of include/python3.12/compile.h