vidya7732/AI_Doctor_LLM_GenModel
0
1#ifndef Py_INTERNAL_CODE_H2#define Py_INTERNAL_CODE_H3#ifdef __cplusplus4extern "C" {5#endif6 7typedef struct {8 PyObject *ptr; /* Cached pointer (borrowed reference) */9 uint64_t globals_ver; /* ma_version of global dict */10 uint64_t builtins_ver; /* ma_version of builtin dict */11} _PyOpcache_LoadGlobal;12 13struct _PyOpcache {14 union {15 _PyOpcache_LoadGlobal lg;16 } u;17 char optimized;18};19 20/* Private API */21int _PyCode_InitOpcache(PyCodeObject *co);22 23 24#ifdef __cplusplus25}26#endif27#endif /* !Py_INTERNAL_CODE_H */28 