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 81994a9 commit 1618433Copy full SHA for 1618433
Modules/_sysconfig.c
@@ -71,7 +71,7 @@ _sysconfig_config_vars_impl(PyObject *module)
71
if (Py_JIT_ENABLED == 1) {
72
py_jit_enabled = _PyLong_GetOne();
73
} else {
74
- py_jit_enabled = PyLong_FromInt(2);
+ py_jit_enabled = PyLong_FromLong(2);
75
}
76
#else
77
PyObject *py_jit_enabled = _PyLong_GetZero();
0 commit comments