mirror of https://github.com/python/cpython
#2689 Fix indentation in Objects/rangeobject.c
This commit is contained in:
parent
cef5b3d411
commit
df0a5cbb2c
|
@ -216,8 +216,8 @@ range_item(rangeobject *r, Py_ssize_t i)
|
|||
if (!PyErr_Occurred())
|
||||
PyErr_SetString(PyExc_IndexError,
|
||||
"range object index out of range");
|
||||
return NULL;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* XXX(nnorwitz): optimize for short ints. */
|
||||
rem = PyLong_FromSsize_t(i);
|
||||
|
|
Loading…
Reference in New Issue