PATH:
usr
/
include
/
python3.6m
/* Module definition and import interface */ #ifndef Py_IMPORT_H #define Py_IMPORT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_LIMITED_API PyAPI_FUNC(void) _PyImportZip_Init(void); PyMODINIT_FUNC PyInit_imp(void); #endif /* !Py_LIMITED_API */ PyAPI_FUNC(long) PyImport_GetMagicNumber(void); PyAPI_FUNC(const char *) PyImport_GetMagicTag(void); PyAPI_FUNC(PyObject *) PyImport_ExecCodeModule( const char *name, /* UTF-8 encoded string */ PyObject *co ); PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleEx( const char *name, /* UTF-8 encoded string */ PyObject *co, const char *pathname /* decoded from the filesystem encoding */ ); PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleWithPathnames( const char *name, /* UTF-8 encoded string */ PyObject *co, const char *pathname, /* decoded from the filesystem encoding */ const char *cpathname /* decoded from the filesystem encoding */ ); #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000 PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleObject( PyObject *name, PyObject *co, PyObject *pathname, PyObject *cpathname ); #endif PyAPI_FUNC(PyObject *) PyImport_GetModuleDict(void); #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000 PyAPI_FUNC(PyObject *) PyImport_AddModuleObject( PyObject *name ); #endif PyAPI_FUNC(PyObject *) PyImport_AddModule( const char *name /* UTF-8 encoded string */ ); PyAPI_FUNC(PyObject *) PyImport_ImportModule( const char *name /* UTF-8 encoded string */ ); PyAPI_FUNC(PyObject *) PyImport_ImportModuleNoBlock( const char *name /* UTF-8 encoded string */ ); PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel( const char *name, /* UTF-8 encoded string */ PyObject *globals, PyObject *locals, PyObject *fromlist, int level ); #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03050000 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevelObject( PyObject *name, PyObject *globals, PyObject *locals, PyObject *fromlist, int level ); #endif #define PyImport_ImportModuleEx(n, g, l, f) \ PyImport_ImportModuleLevel(n, g, l, f, 0) PyAPI_FUNC(PyObject *) PyImport_GetImporter(PyObject *path); PyAPI_FUNC(PyObject *) PyImport_Import(PyObject *name); PyAPI_FUNC(PyObject *) PyImport_ReloadModule(PyObject *m); PyAPI_FUNC(void) PyImport_Cleanup(void); #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000 PyAPI_FUNC(int) PyImport_ImportFrozenModuleObject( PyObject *name ); #endif PyAPI_FUNC(int) PyImport_ImportFrozenModule( const char *name /* UTF-8 encoded string */ ); #ifndef Py_LIMITED_API #ifdef WITH_THREAD PyAPI_FUNC(void) _PyImport_AcquireLock(void); PyAPI_FUNC(int) _PyImport_ReleaseLock(void); #else #define _PyImport_AcquireLock() #define _PyImport_ReleaseLock() 1 #endif PyAPI_FUNC(void) _PyImport_ReInitLock(void); PyAPI_FUNC(PyObject *) _PyImport_FindBuiltin( const char *name /* UTF-8 encoded string */ ); PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObject(PyObject *, PyObject *); PyAPI_FUNC(int) _PyImport_FixupBuiltin( PyObject *mod, const char *name /* UTF-8 encoded string */ ); PyAPI_FUNC(int) _PyImport_FixupExtensionObject(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); #endif /* Py_LIMITED_API */ PyAPI_DATA(PyTypeObject) PyNullImporter_Type; PyAPI_FUNC(int) PyImport_AppendInittab( const char *name, /* ASCII encoded string */ PyObject* (*initfunc)(void) ); #ifndef Py_LIMITED_API 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; #endif #ifdef __cplusplus } #endif #endif /* !Py_IMPORT_H */
[+]
..
[-] pystrtod.h
[edit]
[-] Python-ast.h
[edit]
[-] grammar.h
[edit]
[-] pygetopt.h
[edit]
[-] marshal.h
[edit]
[-] symtable.h
[edit]
[-] pyhash.h
[edit]
[-] traceback.h
[edit]
[-] abstract.h
[edit]
[-] sysmodule.h
[edit]
[-] ast.h
[edit]
[-] structseq.h
[edit]
[-] floatobject.h
[edit]
[-] osdefs.h
[edit]
[-] odictobject.h
[edit]
[-] graminit.h
[edit]
[-] enumobject.h
[edit]
[-] pystrhex.h
[edit]
[-] pyexpat.h
[edit]
[-] tupleobject.h
[edit]
[-] accu.h
[edit]
[-] listobject.h
[edit]
[-] pylifecycle.h
[edit]
[-] bltinmodule.h
[edit]
[-] parsetok.h
[edit]
[-] iterobject.h
[edit]
[-] weakrefobject.h
[edit]
[-] pymem.h
[edit]
[-] code.h
[edit]
[-] pyport.h
[edit]
[-] errcode.h
[edit]
[-] pyctype.h
[edit]
[-] modsupport.h
[edit]
[-] pystrcmp.h
[edit]
[-] eval.h
[edit]
[-] moduleobject.h
[edit]
[-] import.h
[edit]
[-] pgenheaders.h
[edit]
[-] fileobject.h
[edit]
[-] pymacconfig.h
[edit]
[-] pyerrors.h
[edit]
[-] sliceobject.h
[edit]
[-] pyconfig-64.h
[edit]
[-] metagrammar.h
[edit]
[-] methodobject.h
[edit]
[-] node.h
[edit]
[-] py_curses.h
[edit]
[-] longobject.h
[edit]
[-] typeslots.h
[edit]
[-] codecs.h
[edit]
[-] rangeobject.h
[edit]
[-] warnings.h
[edit]
[-] descrobject.h
[edit]
[-] bytes_methods.h
[edit]
[-] pystate.h
[edit]
[-] setobject.h
[edit]
[-] token.h
[edit]
[-] frameobject.h
[edit]
[-] pycapsule.h
[edit]
[-] bytearrayobject.h
[edit]
[-] bytesobject.h
[edit]
[-] osmodule.h
[edit]
[-] bitset.h
[edit]
[-] pytime.h
[edit]
[-] dictobject.h
[edit]
[-] ucnhash.h
[edit]
[-] pythonrun.h
[edit]
[-] object.h
[edit]
[-] pyatomic.h
[edit]
[-] Python.h
[edit]
[-] dynamic_annotations.h
[edit]
[-] compile.h
[edit]
[-] opcode.h
[edit]
[-] intrcheck.h
[edit]
[-] pymath.h
[edit]
[-] pydebug.h
[edit]
[-] memoryobject.h
[edit]
[-] _hashopenssl.h
[edit]
[-] pymacro.h
[edit]
[-] structmember.h
[edit]
[-] asdl.h
[edit]
[-] objimpl.h
[edit]
[-] pyfpe.h
[edit]
[-] classobject.h
[edit]
[-] pyconfig.h
[edit]
[-] dtoa.h
[edit]
[-] unicodeobject.h
[edit]
[-] funcobject.h
[edit]
[-] datetime.h
[edit]
[-] fileutils.h
[edit]
[-] boolobject.h
[edit]
[-] pgen.h
[edit]
[-] ceval.h
[edit]
[-] namespaceobject.h
[edit]
[-] pydtrace.h
[edit]
[-] genobject.h
[edit]
[-] pythread.h
[edit]
[-] patchlevel.h
[edit]
[-] cellobject.h
[edit]
[-] pyarena.h
[edit]
[-] longintrepr.h
[edit]
[-] complexobject.h
[edit]