Skip to content

Commit e33a225

Browse files
Address review
1 parent b0a5ede commit e33a225

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Modules/_testinternalcapi/tuple.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@
66
static PyObject *
77
tuple_from_pair(PyObject *Py_UNUSED(module), PyObject *args)
88
{
9-
PyObject *one, *two;
10-
if (!PyArg_ParseTuple(args, "OO", &one, &two)) {
9+
PyObject *first, *second;
10+
if (!PyArg_ParseTuple(args, "OO", &first, &second)) {
1111
return NULL;
1212
}
1313

14-
return _PyTuple_FromPair(one, two);
14+
return _PyTuple_FromPair(first, second);
1515
}
1616

1717
static PyObject *
1818
tuple_from_pair_steal(PyObject *Py_UNUSED(module), PyObject *args)
1919
{
20-
PyObject *one, *two;
21-
if (!PyArg_ParseTuple(args, "OO", &one, &two)) {
20+
PyObject *first, *second;
21+
if (!PyArg_ParseTuple(args, "OO", &first, &second)) {
2222
return NULL;
2323
}
2424

25-
return _PyTuple_FromPairSteal(Py_NewRef(one), Py_NewRef(two));
25+
return _PyTuple_FromPairSteal(Py_NewRef(first), Py_NewRef(second));
2626
}
2727

2828

0 commit comments

Comments
 (0)