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 c417c55 commit fecc89cCopy full SHA for fecc89c
mypyc/lib-rt/CPy.h
@@ -68,7 +68,8 @@ typedef struct tuple_T4CIOO {
68
extern PyObject * __mypyc_empty_tuple__;
69
70
static inline PyObject *_CPyTuple_LoadEmptyTupleConstant() {
71
- Py_INCREF(__mypyc_empty_tuple__);
+ // do tests still pass if I comment this out? empty tuple singleton is not tracked by gc
72
+ // Py_INCREF(__mypyc_empty_tuple__);
73
return __mypyc_empty_tuple__;
74
}
75
0 commit comments