Commit de687bd3 authored by Fred Drake's avatar Fred Drake

call_sys_exitfunc(): Remove unused variable f.

parent 87ce7581
......@@ -1256,7 +1256,7 @@ call_sys_exitfunc(void)
PyObject *exitfunc = PySys_GetObject("exitfunc");
if (exitfunc) {
PyObject *res, *f;
PyObject *res;
Py_INCREF(exitfunc);
PySys_SetObject("exitfunc", (PyObject *)NULL);
res = PyEval_CallObject(exitfunc, (PyObject *)NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment