mirror of
https://github.com/python/cpython.git
synced 2026-05-08 21:50:40 -04:00
initialization not needed
This commit is contained in:
@@ -3576,7 +3576,7 @@ static int
|
||||
split_py_long_to_s_and_ns(PyObject *py_long, time_t *s, long *ns)
|
||||
{
|
||||
int result = 0;
|
||||
PyObject *divmod = NULL;
|
||||
PyObject *divmod;
|
||||
divmod = PyNumber_Divmod(py_long, billion);
|
||||
if (!divmod)
|
||||
goto exit;
|
||||
|
||||
Reference in New Issue
Block a user