mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +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())
|
||||
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…
Add table
Add a link
Reference in a new issue