Skip to content

Commit a5622dc

Browse files
Update Modules/posixmodule.c
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent d356084 commit a5622dc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Modules/posixmodule.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11289,8 +11289,7 @@ build_itimerspec(const struct itimerspec* curr_value)
1128911289
Py_DECREF(value);
1129011290
return NULL;
1129111291
}
11292-
PyObject *tuple = _PyTuple_FromPairSteal(value, interval);
11293-
return tuple;
11292+
return _PyTuple_FromPairSteal(value, interval);
1129411293
}
1129511294

1129611295
static PyObject *

0 commit comments

Comments
 (0)