Blame project/variants/3.6.3/linkage/pycompile.h

ca0fc2
#ifndef PY_LINKAGE_PYCOMPILE_H
ca0fc2
#define PY_LINKAGE_PYCOMPILE_H
ca0fc2
ca0fc2
PY_INIT_FUNC(_decimal);
ca0fc2
PY_INIT_FUNC(_elementtree);
ca0fc2
PY_INIT_FUNC(_heapq);
ca0fc2
PY_INIT_FUNC(_posixsubprocess);
ca0fc2
ca0fc2
PY_INIT_FUNC(math);
ca0fc2
PY_INIT_FUNC(readline);
ca0fc2
PY_INIT_FUNC(select);
ca0fc2
PY_INIT_FUNC(termios);
ca0fc2
ca0fc2
#define PY_IMPORT_INITTAB_PYCOMPILE_CORE                    \
ca0fc2
	{"_decimal",            PyInit__decimal},           \
ca0fc2
	{"_elementtree",        PyInit__elementtree},       \
ca0fc2
	{"_heapq",              PyInit__heapq},             \
ca0fc2
	{"_posixsubprocess",    PyInit__posixsubprocess},   \
ca0fc2
	{"math",                PyInit_math},               \
ca0fc2
	{"readline",            PyInit_readline},           \
ca0fc2
	{"select",              PyInit_select},             \
ca0fc2
	{"termios",             PyInit_termios}
ca0fc2
ca0fc2
#endif