compile.h 448 B

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