compile.h 520 B

12345678910111213141516171819202122232425
  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. /* This doesn't need to match anything */
  12. #define Py_fstring_input 800
  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. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif /* !Py_COMPILE_H */