Commit df0a5cbb authored by Benjamin Peterson's avatar Benjamin Peterson

#2689 Fix indentation in Objects/rangeobject.c

parent cef5b3d4
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment