Skip to content

Commit 080fd51

Browse files
committed
fixup
1 parent 5b27d20 commit 080fd51

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Python/sysmodule.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4118,12 +4118,12 @@ _PySys_Create(PyThreadState *tstate, PyObject **sysmod_p)
41184118
goto error;
41194119
}
41204120

4121-
PyObject *jit = _PyModule_CreateInitialized(&_jit_module, PYTHON_API_VERSION);
4122-
if (jit == NULL) {
4121+
PyObject *_jit = _PyModule_CreateInitialized(&_jit_module, PYTHON_API_VERSION);
4122+
if (_jit == NULL) {
41234123
goto error;
41244124
}
4125-
err = PyDict_SetItemString(sysdict, "_jit", jit);
4126-
Py_DECREF(jit);
4125+
err = PyDict_SetItemString(sysdict, "_jit", _jit);
4126+
Py_DECREF(_jit);
41274127
if (err) {
41284128
goto error;
41294129
}

0 commit comments

Comments
 (0)