mirror of
https://github.com/python/cpython.git
synced 2025-10-07 07:31:46 +00:00
Removed unintentional trailing spaces in non-external and non-generated C files.
This commit is contained in:
parent
6c32585f67
commit
009b811d67
25 changed files with 56 additions and 56 deletions
|
@ -987,7 +987,7 @@ static PyObject *
|
|||
longrangeiter_setstate(longrangeiterobject *r, PyObject *state)
|
||||
{
|
||||
int cmp;
|
||||
|
||||
|
||||
/* clip the value */
|
||||
PyObject *zero = PyLong_FromLong(0);
|
||||
if (zero == NULL)
|
||||
|
@ -1007,7 +1007,7 @@ longrangeiter_setstate(longrangeiterobject *r, PyObject *state)
|
|||
return NULL;
|
||||
if (cmp > 0)
|
||||
state = r->len;
|
||||
|
||||
|
||||
Py_CLEAR(r->index);
|
||||
r->index = state;
|
||||
Py_INCREF(r->index);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue