2000-07-08 21:20:36 -03:00
|
|
|
#ifndef Py_COMPILE_H
|
|
|
|
#define Py_COMPILE_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-01-31 07:40:27 -04:00
|
|
|
/* These definitions must match corresponding definitions in graminit.h. */
|
2011-09-28 20:04:08 -03:00
|
|
|
#define Py_single_input 256
|
|
|
|
#define Py_file_input 257
|
|
|
|
#define Py_eval_input 258
|
2019-01-31 07:40:27 -04:00
|
|
|
#define Py_func_type_input 345
|
2011-09-28 20:04:08 -03:00
|
|
|
|
2021-03-22 05:32:11 -03:00
|
|
|
#ifndef Py_LIMITED_API
|
|
|
|
# define Py_CPYTHON_COMPILE_H
|
|
|
|
# include "cpython/compile.h"
|
|
|
|
# undef Py_CPYTHON_COMPILE_H
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2011-09-28 20:04:08 -03:00
|
|
|
#endif /* !Py_COMPILE_H */
|