Skip to content

Commit 1618433

Browse files
committed
PyLong_FromInt -> PyLong_FromLong
1 parent 81994a9 commit 1618433

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_sysconfig.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ _sysconfig_config_vars_impl(PyObject *module)
7171
if (Py_JIT_ENABLED == 1) {
7272
py_jit_enabled = _PyLong_GetOne();
7373
} else {
74-
py_jit_enabled = PyLong_FromInt(2);
74+
py_jit_enabled = PyLong_FromLong(2);
7575
}
7676
#else
7777
PyObject *py_jit_enabled = _PyLong_GetZero();

0 commit comments

Comments
 (0)