Skip to content

Commit 385e660

Browse files
Merge branch 'feat/145247-pytuple-from-pair-use-5' of github.com:sergey-miryanov/cpython into feat/145247-pytuple-from-pair-use-5
2 parents 59ffd27 + a5622dc commit 385e660

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)