]> granicus.if.org Git - python/commitdiff
Adjust PySlice_GetIndices documentation to signature change.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 11 Dec 2010 18:17:22 +0000 (18:17 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 11 Dec 2010 18:17:22 +0000 (18:17 +0000)
Doc/c-api/slice.rst

index 5f992f13c7a46feedd785b72089f0757f2fb2570..302091ff8c6078c92c594c607783559e390ab381 100644 (file)
@@ -26,7 +26,7 @@ Slice Objects
    the new object could not be allocated.
 
 
-.. c:function:: int PySlice_GetIndices(PySliceObject *slice, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step)
+.. c:function:: int PySlice_GetIndices(PyObject *slice, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step)
 
    Retrieve the start, stop and step indices from the slice object *slice*,
    assuming a sequence of length *length*. Treats indices greater than
@@ -39,7 +39,7 @@ Slice Objects
    You probably do not want to use this function.
 
 
-.. c:function:: int PySlice_GetIndicesEx(PySliceObject *slice, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, Py_ssize_t *slicelength)
+.. c:function:: int PySlice_GetIndicesEx(PyObject *slice, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, Py_ssize_t *slicelength)
 
    Usable replacement for :c:func:`PySlice_GetIndices`.  Retrieve the start,
    stop, and step indices from the slice object *slice* assuming a sequence of