2024-03-20 08:12:44 +00:00
|
|
|
/* Definitions for bytecode */
|
|
|
|
|
|
|
|
#ifndef Py_CODE_H
|
|
|
|
#define Py_CODE_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2024-04-11 14:01:25 +00:00
|
|
|
typedef struct PyCodeObject PyCodeObject;
|
2024-03-20 08:12:44 +00:00
|
|
|
|
|
|
|
#ifndef Py_LIMITED_API
|
2024-04-11 14:01:25 +00:00
|
|
|
# define Py_CPYTHON_CODE_H
|
|
|
|
# include "cpython/code.h"
|
|
|
|
# undef Py_CPYTHON_CODE_H
|
2024-03-20 08:12:44 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_CODE_H */
|