CoolFace
Apppublic

vidya7732/AI_Doctor_LLM_GenModel

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
import.h51 linesDownload Raw Back to cpython
1#ifndef Py_CPYTHON_IMPORT_H2#  error "this header file must not be included directly"3#endif4 5#ifdef __cplusplus6extern "C" {7#endif8 9PyMODINIT_FUNC PyInit__imp(void);10 11PyAPI_FUNC(int) _PyImport_IsInitialized(PyInterpreterState *);12 13PyAPI_FUNC(PyObject *) _PyImport_GetModuleId(struct _Py_Identifier *name);14PyAPI_FUNC(int) _PyImport_SetModule(PyObject *name, PyObject *module);15PyAPI_FUNC(int) _PyImport_SetModuleString(const char *name, PyObject* module);16 17PyAPI_FUNC(void) _PyImport_AcquireLock(void);18PyAPI_FUNC(int) _PyImport_ReleaseLock(void);19 20PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObject(PyObject *, PyObject *);21 22PyAPI_FUNC(int) _PyImport_FixupBuiltin(23    PyObject *mod,24    const char *name,            /* UTF-8 encoded string */25    PyObject *modules26    );27PyAPI_FUNC(int) _PyImport_FixupExtensionObject(PyObject*, PyObject *,28                                               PyObject *, PyObject *);29 30struct _inittab {31    const char *name;           /* ASCII encoded string */32    PyObject* (*initfunc)(void);33};34PyAPI_DATA(struct _inittab *) PyImport_Inittab;35PyAPI_FUNC(int) PyImport_ExtendInittab(struct _inittab *newtab);36 37struct _frozen {38    const char *name;                 /* ASCII encoded string */39    const unsigned char *code;40    int size;41};42 43/* Embedding apps may change this pointer to point to their favorite44   collection of frozen modules: */45 46PyAPI_DATA(const struct _frozen *) PyImport_FrozenModules;47 48#ifdef __cplusplus49}50#endif51