code.h 318 B

1234567891011121314151617181920
  1. /* Definitions for bytecode */
  2. #ifndef Py_CODE_H
  3. #define Py_CODE_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. typedef struct PyCodeObject PyCodeObject;
  8. #ifndef Py_LIMITED_API
  9. # define Py_CPYTHON_CODE_H
  10. # include "cpython/code.h"
  11. # undef Py_CPYTHON_CODE_H
  12. #endif
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* !Py_CODE_H */