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
|
|
|
|
let these be any arbitrary python type.
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct {
|
2000-07-08 21:55:06 -03:00
|
|
|
PyObject_HEAD
|
|
|
|
PyObject *start, *stop, *step;
|
1996-07-30 13:42:30 -03:00
|
|
|
} PySliceObject;
|
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_DATA(PyTypeObject) PySlice_Type;
|
1996-07-30 13:42:30 -03:00
|
|
|
|
|
|
|
#define PySlice_Check(op) ((op)->ob_type == &PySlice_Type)
|
|
|
|
|
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);
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(int) PySlice_GetIndices(PySliceObject *r, int length,
|
2000-07-08 21:55:06 -03:00
|
|
|
int *start, int *stop, int *step);
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(int) PySlice_GetIndicesEx(PySliceObject *r, int length,
|
2002-06-11 07:55:12 -03:00
|
|
|
int *start, int *stop,
|
|
|
|
int *step, int *slicelength);
|
1996-07-30 13:42:30 -03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_SLICEOBJECT_H */
|