We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aeb2c5 commit 796672fCopy full SHA for 796672f
mypyc/common.py
@@ -68,7 +68,6 @@
68
# Runtime C library files that are always included (some ops may bring
69
# extra dependencies via mypyc.ir.SourceDep)
70
RUNTIME_C_FILES: Final = [
71
- "static_data.c",
72
"init.c",
73
"getargs.c",
74
"getargsfast.c",
mypyc/lib-rt/init.c
@@ -1,5 +1,6 @@
1
#include <Python.h>
2
#include "CPy.h"
3
+#include "static_data.c"
4
5
struct ExcDummyStruct _CPy_ExcDummyStruct = { PyObject_HEAD_INIT(NULL) };
6
PyObject *_CPy_ExcDummy = (PyObject *)&_CPy_ExcDummyStruct;
0 commit comments