2005-10-20 16:59:25 -03:00
|
|
|
/* Definitions for bytecode */
|
|
|
|
|
|
|
|
#ifndef Py_CODE_H
|
|
|
|
#define Py_CODE_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-04-28 12:07:12 -03:00
|
|
|
typedef struct PyCodeObject PyCodeObject;
|
2016-09-07 15:16:41 -03:00
|
|
|
|
|
|
|
#ifndef Py_LIMITED_API
|
2020-04-28 12:07:12 -03:00
|
|
|
# define Py_CPYTHON_CODE_H
|
|
|
|
# include "cpython/code.h"
|
|
|
|
# undef Py_CPYTHON_CODE_H
|
2016-09-07 15:16:41 -03:00
|
|
|
#endif
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_CODE_H */
|