CoolFace
Apppublic

vidya7732/AI_Doctor_LLM_GenModel

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
interpreteridobject.h20 linesDownload Raw Back to cpython
1#ifndef Py_CPYTHON_INTERPRETERIDOBJECT_H2#  error "this header file must not be included directly"3#endif4 5#ifdef __cplusplus6extern "C" {7#endif8 9/* Interpreter ID Object */10 11PyAPI_DATA(PyTypeObject) _PyInterpreterID_Type;12 13PyAPI_FUNC(PyObject *) _PyInterpreterID_New(int64_t);14PyAPI_FUNC(PyObject *) _PyInterpreterState_GetIDObject(PyInterpreterState *);15PyAPI_FUNC(PyInterpreterState *) _PyInterpreterID_LookUp(PyObject *);16 17#ifdef __cplusplus18}19#endif20