types.SliceType
.
PyObject *ob) |
PyObject *start, PyObject *stop, PyObject *step) |
None
will be used for the
corresponding attribute. Return NULL if the new object could
not be allocated.
PySliceObject *slice, int length, int *start, int *stop, int *step) |
Returns 0 on success and -1 on error with no exception set (unless one of the indices was not None and failed to be converted to an integer, in which case -1 is returned with an exception set).
You probably do not want to use this function. If you want to use slice objects in versions of Python prior to 2.3, you would probably do well to incorporate the source of PySlice_GetIndicesEx, suitably renamed, in the source of your extension.
PySliceObject *slice, int length, int *start, int *stop, int *step, int *slicelength) |
Returns 0 on success and -1 on error with exception set.
New in version 2.3.
See About this document... for information on suggesting changes.