summaryrefslogtreecommitdiff
path: root/Objects/rangeobject.c
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2011-01-16 20:57:01 +0000
committerMatthias Klose <doko@ubuntu.com>2011-01-16 20:57:01 +0000
commit616667fbe8eb53c3d0e4701d83987c0594e0da3c (patch)
treeac529ec9b80568834ff6f36381e7692780cefded /Objects/rangeobject.c
parentebeb90339de196d97ee197afad5e4e4a7f672a50 (diff)
downloadcpython-git-616667fbe8eb53c3d0e4701d83987c0594e0da3c.tar.gz
rangeobject.c (compute_slice_indices): Make function static.
Diffstat (limited to 'Objects/rangeobject.c')
-rw-r--r--Objects/rangeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c
index 979a62afdb..cff2ce4741 100644
--- a/Objects/rangeobject.c
+++ b/Objects/rangeobject.c
@@ -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)
{