/opt/alt/python39/include/python3.9/cpython
NameSizeModeActions
abstract.h142000644editdlrm
bytearrayobject.h7690644editdlrm
bytesobject.h43480644editdlrm
ceval.h15370644editdlrm
code.h69890644editdlrm
dictobject.h37970644editdlrm
fileobject.h7210644editdlrm
fileutils.h40040644editdlrm
frameobject.h30590644editdlrm
import.h14730644editdlrm
initconfig.h169790644editdlrm
interpreteridobject.h4560644editdlrm
listobject.h13640644editdlrm
methodobject.h13990644editdlrm
object.h193580644editdlrm
objimpl.h44560644editdlrm
pyerrors.h51010644editdlrm
pylifecycle.h20960644editdlrm
pymem.h35110644editdlrm
pystate.h101340644editdlrm
sysmodule.h5750644editdlrm
traceback.h4730644editdlrm
tupleobject.h10360644editdlrm
unicodeobject.h469830644editdlrm
Edit: /opt/alt/python39/include/python3.9/cpython/import.h (1473B)
#ifndef Py_CPYTHON_IMPORT_H # error "this header file must not be included directly" #endif #ifdef __cplusplus extern "C" { #endif PyMODINIT_FUNC PyInit__imp(void); PyAPI_FUNC(int) _PyImport_IsInitialized(PyInterpreterState *); PyAPI_FUNC(PyObject *) _PyImport_GetModuleId(struct _Py_Identifier *name); PyAPI_FUNC(int) _PyImport_SetModule(PyObject *name, PyObject *module); PyAPI_FUNC(int) _PyImport_SetModuleString(const char *name, PyObject* module); PyAPI_FUNC(void) _PyImport_AcquireLock(void); PyAPI_FUNC(int) _PyImport_ReleaseLock(void); PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObject(PyObject *, PyObject *); PyAPI_FUNC(int) _PyImport_FixupBuiltin( PyObject *mod, const char *name, /* UTF-8 encoded string */ PyObject *modules ); PyAPI_FUNC(int) _PyImport_FixupExtensionObject(PyObject*, PyObject *, PyObject *, PyObject *); struct _inittab { const char *name; /* ASCII encoded string */ PyObject* (*initfunc)(void); }; PyAPI_DATA(struct _inittab *) PyImport_Inittab; PyAPI_FUNC(int) PyImport_ExtendInittab(struct _inittab *newtab); struct _frozen { const char *name; /* ASCII encoded string */ const unsigned char *code; int size; }; /* Embedding apps may change this pointer to point to their favorite collection of frozen modules: */ PyAPI_DATA(const struct _frozen *) PyImport_FrozenModules; #ifdef __cplusplus } #endif