1996-07-30 18:42:30 +02:00
|
|
|
#ifndef Py_SLICEOBJECT_H
|
|
|
|
#define Py_SLICEOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1996-10-11 18:25:41 +02:00
|
|
|
/* The unique ellipsis object "..." */
|
1996-07-30 18:42:30 +02:00
|
|
|
|
2002-08-12 09:21:58 +02:00
|
|
|
PyAPI_DATA(PyObject) _Py_EllipsisObject; /* Don't use this directly */
|
1996-07-30 18:42:30 +02:00
|
|
|
|
1996-10-11 18:25:41 +02:00
|
|
|
#define Py_Ellipsis (&_Py_EllipsisObject)
|
1996-07-30 18:42:30 +02: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 18:32:00 +02:00
|
|
|
let these be any arbitrary python type. Py_None stands for omitted values.
|
1996-07-30 18:42:30 +02:00
|
|
|
*/
|
2010-12-03 21:14:31 +01:00
|
|
|
#ifndef Py_LIMITED_API
|
1996-07-30 18:42:30 +02:00
|
|
|
typedef struct {
|
2000-07-09 02:55:06 +02:00
|
|
|
PyObject_HEAD
|
2004-10-28 18:32:00 +02:00
|
|
|
PyObject *start, *stop, *step; /* not NULL */
|
1996-07-30 18:42:30 +02:00
|
|
|
} PySliceObject;
|
2010-12-03 21:14:31 +01:00
|
|
|
#endif
|
1996-07-30 18:42:30 +02:00
|
|
|
|
2002-08-12 09:21:58 +02:00
|
|
|
PyAPI_DATA(PyTypeObject) PySlice_Type;
|
2009-04-20 04:09:13 +02:00
|
|
|
PyAPI_DATA(PyTypeObject) PyEllipsis_Type;
|
1996-07-30 18:42:30 +02:00
|
|
|
|
2007-12-19 03:45:37 +01:00
|
|
|
#define PySlice_Check(op) (Py_TYPE(op) == &PySlice_Type)
|
1996-07-30 18:42:30 +02:00
|
|
|
|
2002-08-12 09:21:58 +02:00
|
|
|
PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
|
2000-07-09 02:55:06 +02:00
|
|
|
PyObject* step);
|
2010-12-03 21:14:31 +01:00
|
|
|
#ifndef Py_LIMITED_API
|
2006-04-21 12:40:58 +02:00
|
|
|
PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop);
|
2012-11-17 20:18:10 +01:00
|
|
|
PyAPI_FUNC(int) _PySlice_GetLongIndices(PySliceObject *self, PyObject *length,
|
|
|
|
PyObject **start_ptr, PyObject **stop_ptr,
|
|
|
|
PyObject **step_ptr);
|
2010-12-03 21:14:31 +01:00
|
|
|
#endif
|
|
|
|
PyAPI_FUNC(int) PySlice_GetIndices(PyObject *r, Py_ssize_t length,
|
2006-02-15 18:27:45 +01:00
|
|
|
Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step);
|
2010-12-03 21:14:31 +01:00
|
|
|
PyAPI_FUNC(int) PySlice_GetIndicesEx(PyObject *r, Py_ssize_t length,
|
2006-02-15 18:27:45 +01:00
|
|
|
Py_ssize_t *start, Py_ssize_t *stop,
|
|
|
|
Py_ssize_t *step, Py_ssize_t *slicelength);
|
1996-07-30 18:42:30 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_SLICEOBJECT_H */
|