You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
318 B

  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 */