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 e858990 commit c417c55Copy full SHA for c417c55
mypyc/lib-rt/init.c
@@ -4,6 +4,9 @@
4
struct ExcDummyStruct _CPy_ExcDummyStruct = { PyObject_HEAD_INIT(NULL) };
5
PyObject *_CPy_ExcDummy = (PyObject *)&_CPy_ExcDummyStruct;
6
7
+// System-wide empty tuple constant
8
+PyObject * __mypyc_empty_tuple__ = NULL;
9
+
10
// Because its dynamic linker is more restricted than linux/OS X,
11
// Windows doesn't allow initializing globals with values from
12
// other dynamic libraries. This means we need to initialize
0 commit comments