vidya7732/AI_Doctor_LLM_GenModel
0
1/* Definitions for bytecode */2 3#ifndef Py_CODE_H4#define Py_CODE_H5#ifdef __cplusplus6extern "C" {7#endif8 9typedef struct PyCodeObject PyCodeObject;10 11#ifndef Py_LIMITED_API12# define Py_CPYTHON_CODE_H13# include "cpython/code.h"14# undef Py_CPYTHON_CODE_H15#endif16 17#ifdef __cplusplus18}19#endif20#endif /* !Py_CODE_H */21 