- Notifications
You must be signed in to change notification settings - Fork 31.8k
/
Copy pathimport.h
103 lines (96 loc) · 3.16 KB
/
import.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* Module definition and import interface */
#ifndefPy_IMPORT_H
#definePy_IMPORT_H
#ifdef__cplusplus
extern"C" {
#endif
PyAPI_FUNC(long) PyImport_GetMagicNumber(void);
PyAPI_FUNC(constchar*) PyImport_GetMagicTag(void);
PyAPI_FUNC(PyObject*) PyImport_ExecCodeModule(
constchar*name, /* UTF-8 encoded string */
PyObject*co
);
PyAPI_FUNC(PyObject*) PyImport_ExecCodeModuleEx(
constchar*name, /* UTF-8 encoded string */
PyObject*co,
constchar*pathname/* decoded from the filesystem encoding */
);
PyAPI_FUNC(PyObject*) PyImport_ExecCodeModuleWithPathnames(
constchar*name, /* UTF-8 encoded string */
PyObject*co,
constchar*pathname, /* decoded from the filesystem encoding */
constchar*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 >= 0x03070000
PyAPI_FUNC(PyObject*) PyImport_GetModule(PyObject*name);
#endif
#if !defined(Py_LIMITED_API) ||Py_LIMITED_API+0 >= 0x03030000
PyAPI_FUNC(PyObject*) PyImport_AddModuleObject(
PyObject*name
);
#endif
PyAPI_FUNC(PyObject*) PyImport_AddModule(
constchar*name/* UTF-8 encoded string */
);
#if !defined(Py_LIMITED_API) ||Py_LIMITED_API+0 >= 0x030d0000
PyAPI_FUNC(PyObject*) PyImport_AddModuleRef(
constchar*name/* UTF-8 encoded string */
);
#endif
PyAPI_FUNC(PyObject*) PyImport_ImportModule(
constchar*name/* UTF-8 encoded string */
);
Py_DEPRECATED(3.13) PyAPI_FUNC(PyObject*) PyImport_ImportModuleNoBlock(
constchar*name/* UTF-8 encoded string */
);
PyAPI_FUNC(PyObject*) PyImport_ImportModuleLevel(
constchar*name, /* UTF-8 encoded string */
PyObject*globals,
PyObject*locals,
PyObject*fromlist,
intlevel
);
#if !defined(Py_LIMITED_API) ||Py_LIMITED_API+0 >= 0x03050000
PyAPI_FUNC(PyObject*) PyImport_ImportModuleLevelObject(
PyObject*name,
PyObject*globals,
PyObject*locals,
PyObject*fromlist,
intlevel
);
#endif
#definePyImport_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);
#if !defined(Py_LIMITED_API) ||Py_LIMITED_API+0 >= 0x03030000
PyAPI_FUNC(int) PyImport_ImportFrozenModuleObject(
PyObject*name
);
#endif
PyAPI_FUNC(int) PyImport_ImportFrozenModule(
constchar*name/* UTF-8 encoded string */
);
PyAPI_FUNC(int) PyImport_AppendInittab(
constchar*name, /* ASCII encoded string */
PyObject* (*initfunc)(void)
);
#ifndefPy_LIMITED_API
# definePy_CPYTHON_IMPORT_H
# include"cpython/import.h"
# undef Py_CPYTHON_IMPORT_H
#endif
#ifdef__cplusplus
}
#endif
#endif/* !Py_IMPORT_H */