1996-07-30 13:42:30 -03:00
|
|
|
#ifndef Py_SLICEOBJECT_H
|
|
|
|
#define Py_SLICEOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1996-10-11 13:25:41 -03:00
|
|
|
/* The unique ellipsis object "..." */
|
1996-07-30 13:42:30 -03:00
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_DATA(PyObject) _Py_EllipsisObject; /* Don't use this directly */
|
1996-07-30 13:42:30 -03:00
|
|
|
|
1996-10-11 13:25:41 -03:00
|
|
|
#define Py_Ellipsis (&_Py_EllipsisObject)
|
1996-07-30 13:42:30 -03:00
|
|
|
|
|
|
|
/* Slice object interface */
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
A slice object containing start, stop, and step data members (the
|
|
|
|
names are from range). After much talk with Guido, it was decided to
|
2004-10-28 13:32:00 -03:00
|
|
|
let these be any arbitrary python type. Py_None stands for omitted values.
|
1996-07-30 13:42:30 -03:00
|
|
|
*/
|
2010-12-03 16:14:31 -04:00
|
|
|
#ifndef Py_LIMITED_API
|
1996-07-30 13:42:30 -03:00
|
|
|
typedef struct {
|
2000-07-08 21:55:06 -03:00
|
|
|
PyObject_HEAD
|
2017-11-28 11:56:10 -04:00
|
|
|
PyObject *start, *stop, *step; /* not NULL */
|
1996-07-30 13:42:30 -03:00
|
|
|
} PySliceObject;
|
2010-12-03 16:14:31 -04:00
|
|
|
#endif
|
1996-07-30 13:42:30 -03:00
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_DATA(PyTypeObject) PySlice_Type;
|
2009-04-19 23:09:13 -03:00
|
|
|
PyAPI_DATA(PyTypeObject) PyEllipsis_Type;
|
1996-07-30 13:42:30 -03:00
|
|
|
|
2020-02-13 13:37:17 -04:00
|
|
|
#define PySlice_Check(op) Py_IS_TYPE(op, &PySlice_Type)
|
1996-07-30 13:42:30 -03:00
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
|
2000-07-08 21:55:06 -03:00
|
|
|
PyObject* step);
|
2010-12-03 16:14:31 -04:00
|
|
|
#ifndef Py_LIMITED_API
|
2006-04-21 07:40:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
|
2012-11-17 15:18:10 -04:00
|
|
|
PyAPI_FUNC(int) _PySlice_GetLongIndices(PySliceObject *self, PyObject *length,
|
|
|
|
PyObject **start_ptr, PyObject **stop_ptr,
|
|
|
|
PyObject **step_ptr);
|
2010-12-03 16:14:31 -04:00
|
|
|
#endif
|
|
|
|
PyAPI_FUNC(int) PySlice_GetIndices(PyObject *r, Py_ssize_t length,
|
2006-02-15 13:27:45 -04:00
|
|
|
Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
|
2019-05-28 12:16:33 -03:00
|
|
|
Py_DEPRECATED(3.7)
|
2010-12-03 16:14:31 -04:00
|
|
|
PyAPI_FUNC(int) PySlice_GetIndicesEx(PyObject *r, Py_ssize_t length,
|
2017-01-25 07:23:05 -04:00
|
|
|
Py_ssize_t *start, Py_ssize_t *stop,
|
2019-05-28 12:16:33 -03:00
|
|
|
Py_ssize_t *step,
|
|
|
|
Py_ssize_t *slicelength);
|
2017-01-25 07:23:05 -04:00
|
|
|
|
|
|
|
#if !defined(Py_LIMITED_API) || (Py_LIMITED_API+0 >= 0x03050400 && Py_LIMITED_API+0 < 0x03060000) || Py_LIMITED_API+0 >= 0x03060100
|
|
|
|
#define PySlice_GetIndicesEx(slice, length, start, stop, step, slicelen) ( \
|
2017-02-04 05:04:00 -04:00
|
|
|
PySlice_Unpack((slice), (start), (stop), (step)) < 0 ? \
|
|
|
|
((*(slicelen) = 0), -1) : \
|
|
|
|
((*(slicelen) = PySlice_AdjustIndices((length), (start), (stop), *(step))), \
|
2017-01-25 07:23:05 -04:00
|
|
|
0))
|
|
|
|
PyAPI_FUNC(int) PySlice_Unpack(PyObject *slice,
|
|
|
|
Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
|
|
|
|
PyAPI_FUNC(Py_ssize_t) PySlice_AdjustIndices(Py_ssize_t length,
|
|
|
|
Py_ssize_t *start, Py_ssize_t *stop,
|
|
|
|
Py_ssize_t step);
|
|
|
|
#endif
|
1996-07-30 13:42:30 -03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_SLICEOBJECT_H */
|