#2689 Fix indentation in Objects/rangeobject.c

This commit is contained in:
Benjamin Peterson 2008-04-25 21:15:37 +00:00
parent cef5b3d411
commit df0a5cbb2c
1 changed files with 2 additions and 2 deletions

View File

@ -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);