1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef PY_LINKAGE_PYCOMPILE_H
#define PY_LINKAGE_PYCOMPILE_H
PY_INIT_FUNC(_decimal);
PY_INIT_FUNC(_elementtree);
PY_INIT_FUNC(_heapq);
PY_INIT_FUNC(_posixsubprocess);
PY_INIT_FUNC(math);
PY_INIT_FUNC(readline);
PY_INIT_FUNC(select);
PY_INIT_FUNC(termios);
#define PY_IMPORT_INITTAB_PYCOMPILE_CORE \
{"_decimal", PyInit__decimal}, \
{"_elementtree", PyInit__elementtree}, \
{"_heapq", PyInit__heapq}, \
{"_posixsubprocess", PyInit__posixsubprocess}, \
{"math", PyInit_math}, \
{"readline", PyInit_readline}, \
{"select", PyInit_select}, \
{"termios", PyInit_termios}
#endif
|