mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
initialization not needed
This commit is contained in:
parent
f340c21ca9
commit
fbd85a0fbf
1 changed files with 1 additions and 1 deletions
|
@ -3576,7 +3576,7 @@ static int
|
||||||
split_py_long_to_s_and_ns(PyObject *py_long, time_t *s, long *ns)
|
split_py_long_to_s_and_ns(PyObject *py_long, time_t *s, long *ns)
|
||||||
{
|
{
|
||||||
int result = 0;
|
int result = 0;
|
||||||
PyObject *divmod = NULL;
|
PyObject *divmod;
|
||||||
divmod = PyNumber_Divmod(py_long, billion);
|
divmod = PyNumber_Divmod(py_long, billion);
|
||||||
if (!divmod)
|
if (!divmod)
|
||||||
goto exit;
|
goto exit;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue