Skip to content

Commit e7e9c32

Browse files
Clean trailing whitespace in itertoolsmodule.c.
1 parent a3e9128 commit e7e9c32

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Modules/itertoolsmodule.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2667,17 +2667,17 @@ static PyObject *
26672667
accumulate_next(accumulateobject *lz)
26682668
{
26692669
PyObject *val, *oldtotal, *newtotal;
2670-
2670+
26712671
val = PyIter_Next(lz->it);
26722672
if (val == NULL)
26732673
return NULL;
2674-
2674+
26752675
if (lz->total == NULL) {
26762676
Py_INCREF(val);
26772677
lz->total = val;
26782678
return lz->total;
26792679
}
2680-
2680+
26812681
newtotal = PyNumber_Add(lz->total, val);
26822682
Py_DECREF(val);
26832683
if (newtotal == NULL)
@@ -2686,7 +2686,7 @@ accumulate_next(accumulateobject *lz)
26862686
oldtotal = lz->total;
26872687
lz->total = newtotal;
26882688
Py_DECREF(oldtotal);
2689-
2689+
26902690
Py_INCREF(newtotal);
26912691
return newtotal;
26922692
}

0 commit comments

Comments
 (0)