Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit df0a5cb

Browse files
committed
#2689 Fix indentation in Objects/rangeobject.c
1 parent cef5b3d commit df0a5cb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Objects/rangeobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ range_item(rangeobject *r, Py_ssize_t i)
216216
if (!PyErr_Occurred())
217217
PyErr_SetString(PyExc_IndexError,
218218
"range object index out of range");
219-
return NULL;
220-
}
219+
return NULL;
220+
}
221221

222222
/* XXX(nnorwitz): optimize for short ints. */
223223
rem = PyLong_FromSsize_t(i);

0 commit comments

Comments
 (0)