summaryrefslogtreecommitdiff
path: root/project/variants/3.7.1/linkage/pycompile.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-23 19:53:06 -0500
committermidipix <writeonce@midipix.org>2018-12-23 20:31:23 -0500
commitf623e255ebeed07b2907e1b6866b342d6f0f57b0 (patch)
tree1adf30c7f8c32e8d68278917ecdb1e6caa3c203e /project/variants/3.7.1/linkage/pycompile.h
parentfeb6bdda2186ec0b0d1134b2da13732f35705557 (diff)
downloadsbpython3-f623e255ebeed07b2907e1b6866b342d6f0f57b0.tar.bz2
sbpython3-f623e255ebeed07b2907e1b6866b342d6f0f57b0.tar.xz
project: added initial support of the 3.7.1 variant.
Diffstat (limited to 'project/variants/3.7.1/linkage/pycompile.h')
-rw-r--r--project/variants/3.7.1/linkage/pycompile.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/project/variants/3.7.1/linkage/pycompile.h b/project/variants/3.7.1/linkage/pycompile.h
new file mode 100644
index 0000000..ad74185
--- /dev/null
+++ b/project/variants/3.7.1/linkage/pycompile.h
@@ -0,0 +1,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