mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
#2689 Fix indentation in Objects/rangeobject.c
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user