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

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