mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
#2689 Fix indentation in Objects/rangeobject.c
This commit is contained in:
parent
cef5b3d411
commit
df0a5cbb2c
1 changed files with 2 additions and 2 deletions
|
@ -216,8 +216,8 @@ range_item(rangeobject *r, Py_ssize_t i)
|
||||||
if (!PyErr_Occurred())
|
if (!PyErr_Occurred())
|
||||||
PyErr_SetString(PyExc_IndexError,
|
PyErr_SetString(PyExc_IndexError,
|
||||||
"range object index out of range");
|
"range object index out of range");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* XXX(nnorwitz): optimize for short ints. */
|
/* XXX(nnorwitz): optimize for short ints. */
|
||||||
rem = PyLong_FromSsize_t(i);
|
rem = PyLong_FromSsize_t(i);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue