rangeobject.c (compute_slice_indices): Make function static.

This commit is contained in:
Matthias Klose 2011-01-16 20:57:01 +00:00
parent ebeb90339d
commit 616667fbe8
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ compute_slice_element(PyObject *obj)
* Result indicates whether or not the slice is empty
* (-1 = error, 0 = empty slice, 1 = slice contains elements)
*/
int
static int
compute_slice_indices(rangeobject *r, PySliceObject *slice,
PyObject **start, PyObject **stop, PyObject **step)
{