@@ -964,7 +964,7 @@ cycle_reduce(cycleobject *lz)
964
964
/* Create a new cycle with the iterator tuple, then set
965
965
* the saved state on it.
966
966
*/
967
- return Py_BuildValue ("O(O)(Oi)" , Py_TYPE (lz ),
967
+ return Py_BuildValue ("O(O)(Oi)" , Py_TYPE (lz ),
968
968
lz -> it , lz -> saved , lz -> firstpass );
969
969
}
970
970
@@ -3154,7 +3154,7 @@ permutations_reduce(permutationsobject *po)
3154
3154
goto err ;
3155
3155
PyTuple_SET_ITEM (indices , i , index );
3156
3156
}
3157
-
3157
+
3158
3158
cycles = PyTuple_New (po -> r );
3159
3159
if (cycles == NULL )
3160
3160
goto err ;
@@ -3180,7 +3180,7 @@ permutations_setstate(permutationsobject *po, PyObject *state)
3180
3180
{
3181
3181
PyObject * indices , * cycles , * result ;
3182
3182
Py_ssize_t n , i ;
3183
-
3183
+
3184
3184
if (!PyArg_ParseTuple (state , "O!O!" ,
3185
3185
& PyTuple_Type , & indices ,
3186
3186
& PyTuple_Type , & cycles ))
@@ -3359,18 +3359,18 @@ static PyObject *
3359
3359
accumulate_next (accumulateobject * lz )
3360
3360
{
3361
3361
PyObject * val , * oldtotal , * newtotal ;
3362
-
3362
+
3363
3363
val = PyIter_Next (lz -> it );
3364
3364
if (val == NULL )
3365
3365
return NULL ;
3366
-
3366
+
3367
3367
if (lz -> total == NULL ) {
3368
3368
Py_INCREF (val );
3369
3369
lz -> total = val ;
3370
3370
return lz -> total ;
3371
3371
}
3372
3372
3373
- if (lz -> binop == NULL )
3373
+ if (lz -> binop == NULL )
3374
3374
newtotal = PyNumber_Add (lz -> total , val );
3375
3375
else
3376
3376
newtotal = PyObject_CallFunctionObjArgs (lz -> binop , lz -> total , val , NULL );
@@ -3381,7 +3381,7 @@ accumulate_next(accumulateobject *lz)
3381
3381
oldtotal = lz -> total ;
3382
3382
lz -> total = newtotal ;
3383
3383
Py_DECREF (oldtotal );
3384
-
3384
+
3385
3385
Py_INCREF (newtotal );
3386
3386
return newtotal ;
3387
3387
}
@@ -4351,7 +4351,7 @@ zip_longest_next(ziplongestobject *lz)
4351
4351
static PyObject *
4352
4352
zip_longest_reduce (ziplongestobject * lz )
4353
4353
{
4354
-
4354
+
4355
4355
/* Create a new tuple with empty sequences where appropriate to pickle.
4356
4356
* Then use setstate to set the fillvalue
4357
4357
*/
0 commit comments