summaryrefslogtreecommitdiff
path: root/project/variants/3.7.2/linkage/pycompile.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-06-19 11:36:34 +0000
committermidipix <writeonce@midipix.org>2021-06-19 11:36:34 +0000
commitde7ffea0493fcc249d7cda75460c6d602cdd8232 (patch)
tree4db1a983893500152e8d41a9ee16530cdcaa46f7 /project/variants/3.7.2/linkage/pycompile.h
parent5cf0d6766515863bb15f6f05e22375051243572d (diff)
downloadsbpython3-de7ffea0493fcc249d7cda75460c6d602cdd8232.tar.bz2
sbpython3-de7ffea0493fcc249d7cda75460c6d602cdd8232.tar.xz
project: variants: temporarily removed the 3.7.2 pydist.in and logic.
Diffstat (limited to 'project/variants/3.7.2/linkage/pycompile.h')
-rw-r--r--project/variants/3.7.2/linkage/pycompile.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/project/variants/3.7.2/linkage/pycompile.h b/project/variants/3.7.2/linkage/pycompile.h
deleted file mode 100644
index ad74185..0000000
--- a/project/variants/3.7.2/linkage/pycompile.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#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