2008-01-20 05:30:57 -04:00
|
|
|
.. highlightlang:: c
|
|
|
|
|
|
|
|
.. _slice-objects:
|
|
|
|
|
|
|
|
Slice Objects
|
|
|
|
-------------
|
|
|
|
|
|
|
|
|
2010-10-06 07:11:56 -03:00
|
|
|
.. c:var:: PyTypeObject PySlice_Type
|
2008-01-20 05:30:57 -04:00
|
|
|
|
2010-10-17 07:59:41 -03:00
|
|
|
The type object for slice objects. This is the same as :class:`slice` in the
|
|
|
|
Python layer.
|
2008-01-20 05:30:57 -04:00
|
|
|
|
|
|
|
|
2010-10-06 07:11:56 -03:00
|
|
|
.. c:function:: int PySlice_Check(PyObject *ob)
|
2008-01-20 05:30:57 -04:00
|
|
|
|
|
|
|
Return true if *ob* is a slice object; *ob* must not be *NULL*.
|
|
|
|
|
|
|
|
|
2010-10-06 07:11:56 -03:00
|
|
|
.. c:function:: PyObject* PySlice_New(PyObject *start, PyObject *stop, PyObject *step)
|
2008-01-20 05:30:57 -04:00
|
|
|
|
|
|
|
Return a new slice object with the given values. The *start*, *stop*, and
|
Merged revisions 71898-71900,71910,71914-71919 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71898 | jeroen.ruigrok | 2009-04-25 16:24:30 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71899 | jeroen.ruigrok | 2009-04-25 16:27:00 +0200 (za, 25 apr 2009) | 3 lines
The type for ppos has been Py_ssize_t since 2.5, reflect this in the
documentation.
........
r71900 | jeroen.ruigrok | 2009-04-25 16:28:02 +0200 (za, 25 apr 2009) | 2 lines
Reformat paragraph.
........
r71910 | jeroen.ruigrok | 2009-04-25 19:59:03 +0200 (za, 25 apr 2009) | 4 lines
Issue #4129: Belatedly document which C API functions had their argument(s) or
return type changed from int or int * to Py_ssize_t or Py_ssize_t * as this
might cause problems on 64-bit platforms.
........
r71914 | jeroen.ruigrok | 2009-04-25 20:31:20 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71915 | jeroen.ruigrok | 2009-04-25 20:46:03 +0200 (za, 25 apr 2009) | 2 lines
Issue #4129: Document more int -> Py_ssize_t changes.
........
r71916 | jeroen.ruigrok | 2009-04-25 20:53:48 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71917 | jeroen.ruigrok | 2009-04-25 20:57:32 +0200 (za, 25 apr 2009) | 2 lines
Reference to an int type, whereas it's a Py_ssize_t as the synopsis states.
........
r71918 | jeroen.ruigrok | 2009-04-25 21:04:15 +0200 (za, 25 apr 2009) | 2 lines
Since I edited this file, reformat for future edits.
........
r71919 | jeroen.ruigrok | 2009-04-25 21:10:52 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
2009-04-26 18:06:15 -03:00
|
|
|
*step* parameters are used as the values of the slice object attributes of
|
|
|
|
the same names. Any of the values may be *NULL*, in which case the
|
|
|
|
``None`` will be used for the corresponding attribute. Return *NULL* if
|
|
|
|
the new object could not be allocated.
|
2008-01-20 05:30:57 -04:00
|
|
|
|
|
|
|
|
2010-12-11 14:17:22 -04:00
|
|
|
.. c:function:: int PySlice_GetIndices(PyObject *slice, Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step)
|
2008-01-20 05:30:57 -04:00
|
|
|
|
|
|
|
Retrieve the start, stop and step indices from the slice object *slice*,
|
Merged revisions 71898-71900,71910,71914-71919 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71898 | jeroen.ruigrok | 2009-04-25 16:24:30 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71899 | jeroen.ruigrok | 2009-04-25 16:27:00 +0200 (za, 25 apr 2009) | 3 lines
The type for ppos has been Py_ssize_t since 2.5, reflect this in the
documentation.
........
r71900 | jeroen.ruigrok | 2009-04-25 16:28:02 +0200 (za, 25 apr 2009) | 2 lines
Reformat paragraph.
........
r71910 | jeroen.ruigrok | 2009-04-25 19:59:03 +0200 (za, 25 apr 2009) | 4 lines
Issue #4129: Belatedly document which C API functions had their argument(s) or
return type changed from int or int * to Py_ssize_t or Py_ssize_t * as this
might cause problems on 64-bit platforms.
........
r71914 | jeroen.ruigrok | 2009-04-25 20:31:20 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71915 | jeroen.ruigrok | 2009-04-25 20:46:03 +0200 (za, 25 apr 2009) | 2 lines
Issue #4129: Document more int -> Py_ssize_t changes.
........
r71916 | jeroen.ruigrok | 2009-04-25 20:53:48 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71917 | jeroen.ruigrok | 2009-04-25 20:57:32 +0200 (za, 25 apr 2009) | 2 lines
Reference to an int type, whereas it's a Py_ssize_t as the synopsis states.
........
r71918 | jeroen.ruigrok | 2009-04-25 21:04:15 +0200 (za, 25 apr 2009) | 2 lines
Since I edited this file, reformat for future edits.
........
r71919 | jeroen.ruigrok | 2009-04-25 21:10:52 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
2009-04-26 18:06:15 -03:00
|
|
|
assuming a sequence of length *length*. Treats indices greater than
|
|
|
|
*length* as errors.
|
2008-01-20 05:30:57 -04:00
|
|
|
|
2016-10-27 15:41:19 -03:00
|
|
|
Returns ``0`` on success and ``-1`` on error with no exception set (unless one of
|
Merged revisions 71898-71900,71910,71914-71919 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71898 | jeroen.ruigrok | 2009-04-25 16:24:30 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71899 | jeroen.ruigrok | 2009-04-25 16:27:00 +0200 (za, 25 apr 2009) | 3 lines
The type for ppos has been Py_ssize_t since 2.5, reflect this in the
documentation.
........
r71900 | jeroen.ruigrok | 2009-04-25 16:28:02 +0200 (za, 25 apr 2009) | 2 lines
Reformat paragraph.
........
r71910 | jeroen.ruigrok | 2009-04-25 19:59:03 +0200 (za, 25 apr 2009) | 4 lines
Issue #4129: Belatedly document which C API functions had their argument(s) or
return type changed from int or int * to Py_ssize_t or Py_ssize_t * as this
might cause problems on 64-bit platforms.
........
r71914 | jeroen.ruigrok | 2009-04-25 20:31:20 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71915 | jeroen.ruigrok | 2009-04-25 20:46:03 +0200 (za, 25 apr 2009) | 2 lines
Issue #4129: Document more int -> Py_ssize_t changes.
........
r71916 | jeroen.ruigrok | 2009-04-25 20:53:48 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71917 | jeroen.ruigrok | 2009-04-25 20:57:32 +0200 (za, 25 apr 2009) | 2 lines
Reference to an int type, whereas it's a Py_ssize_t as the synopsis states.
........
r71918 | jeroen.ruigrok | 2009-04-25 21:04:15 +0200 (za, 25 apr 2009) | 2 lines
Since I edited this file, reformat for future edits.
........
r71919 | jeroen.ruigrok | 2009-04-25 21:10:52 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
2009-04-26 18:06:15 -03:00
|
|
|
the indices was not :const:`None` and failed to be converted to an integer,
|
2016-10-27 15:41:19 -03:00
|
|
|
in which case ``-1`` is returned with an exception set).
|
2008-01-20 05:30:57 -04:00
|
|
|
|
2008-05-12 15:05:20 -03:00
|
|
|
You probably do not want to use this function.
|
2008-01-20 05:30:57 -04:00
|
|
|
|
2010-12-11 15:22:04 -04:00
|
|
|
.. versionchanged:: 3.2
|
2010-12-11 18:19:34 -04:00
|
|
|
The parameter type for the *slice* parameter was ``PySliceObject*``
|
|
|
|
before.
|
2010-12-11 15:22:04 -04:00
|
|
|
|
2008-01-20 05:30:57 -04:00
|
|
|
|
2010-12-11 14:17:22 -04:00
|
|
|
.. 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)
|
2008-01-20 05:30:57 -04:00
|
|
|
|
2010-10-06 07:11:56 -03:00
|
|
|
Usable replacement for :c:func:`PySlice_GetIndices`. Retrieve the start,
|
Merged revisions 71898-71900,71910,71914-71919 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71898 | jeroen.ruigrok | 2009-04-25 16:24:30 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71899 | jeroen.ruigrok | 2009-04-25 16:27:00 +0200 (za, 25 apr 2009) | 3 lines
The type for ppos has been Py_ssize_t since 2.5, reflect this in the
documentation.
........
r71900 | jeroen.ruigrok | 2009-04-25 16:28:02 +0200 (za, 25 apr 2009) | 2 lines
Reformat paragraph.
........
r71910 | jeroen.ruigrok | 2009-04-25 19:59:03 +0200 (za, 25 apr 2009) | 4 lines
Issue #4129: Belatedly document which C API functions had their argument(s) or
return type changed from int or int * to Py_ssize_t or Py_ssize_t * as this
might cause problems on 64-bit platforms.
........
r71914 | jeroen.ruigrok | 2009-04-25 20:31:20 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71915 | jeroen.ruigrok | 2009-04-25 20:46:03 +0200 (za, 25 apr 2009) | 2 lines
Issue #4129: Document more int -> Py_ssize_t changes.
........
r71916 | jeroen.ruigrok | 2009-04-25 20:53:48 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71917 | jeroen.ruigrok | 2009-04-25 20:57:32 +0200 (za, 25 apr 2009) | 2 lines
Reference to an int type, whereas it's a Py_ssize_t as the synopsis states.
........
r71918 | jeroen.ruigrok | 2009-04-25 21:04:15 +0200 (za, 25 apr 2009) | 2 lines
Since I edited this file, reformat for future edits.
........
r71919 | jeroen.ruigrok | 2009-04-25 21:10:52 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
2009-04-26 18:06:15 -03:00
|
|
|
stop, and step indices from the slice object *slice* assuming a sequence of
|
|
|
|
length *length*, and store the length of the slice in *slicelength*. Out
|
|
|
|
of bounds indices are clipped in a manner consistent with the handling of
|
|
|
|
normal slices.
|
2008-01-20 05:30:57 -04:00
|
|
|
|
2016-10-27 15:41:19 -03:00
|
|
|
Returns ``0`` on success and ``-1`` on error with exception set.
|
Merged revisions 71898-71900,71910,71914-71919 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71898 | jeroen.ruigrok | 2009-04-25 16:24:30 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71899 | jeroen.ruigrok | 2009-04-25 16:27:00 +0200 (za, 25 apr 2009) | 3 lines
The type for ppos has been Py_ssize_t since 2.5, reflect this in the
documentation.
........
r71900 | jeroen.ruigrok | 2009-04-25 16:28:02 +0200 (za, 25 apr 2009) | 2 lines
Reformat paragraph.
........
r71910 | jeroen.ruigrok | 2009-04-25 19:59:03 +0200 (za, 25 apr 2009) | 4 lines
Issue #4129: Belatedly document which C API functions had their argument(s) or
return type changed from int or int * to Py_ssize_t or Py_ssize_t * as this
might cause problems on 64-bit platforms.
........
r71914 | jeroen.ruigrok | 2009-04-25 20:31:20 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71915 | jeroen.ruigrok | 2009-04-25 20:46:03 +0200 (za, 25 apr 2009) | 2 lines
Issue #4129: Document more int -> Py_ssize_t changes.
........
r71916 | jeroen.ruigrok | 2009-04-25 20:53:48 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
r71917 | jeroen.ruigrok | 2009-04-25 20:57:32 +0200 (za, 25 apr 2009) | 2 lines
Reference to an int type, whereas it's a Py_ssize_t as the synopsis states.
........
r71918 | jeroen.ruigrok | 2009-04-25 21:04:15 +0200 (za, 25 apr 2009) | 2 lines
Since I edited this file, reformat for future edits.
........
r71919 | jeroen.ruigrok | 2009-04-25 21:10:52 +0200 (za, 25 apr 2009) | 2 lines
Reformat prior to editing.
........
2009-04-26 18:06:15 -03:00
|
|
|
|
2010-12-11 15:22:04 -04:00
|
|
|
.. versionchanged:: 3.2
|
2010-12-11 18:19:34 -04:00
|
|
|
The parameter type for the *slice* parameter was ``PySliceObject*``
|
|
|
|
before.
|
2017-01-25 07:27:44 -04:00
|
|
|
|
|
|
|
.. versionchanged:: 3.6.1
|
|
|
|
If ``Py_LIMITED_API`` is not set or set to the value between ``0x03050400``
|
|
|
|
and ``0x03060000`` (not including) or ``0x03060100`` or higher
|
|
|
|
:c:func:`!PySlice_GetIndicesEx` is implemented as a macro using
|
|
|
|
:c:func:`PySlice_Unpack` and :c:func:`PySlice_AdjustIndices`.
|
|
|
|
Arguments *start*, *stop* and *step* are evaluated more than once.
|
|
|
|
|
|
|
|
.. deprecated:: 3.6.1
|
|
|
|
If ``Py_LIMITED_API`` is set to the value less than ``0x03050400`` or
|
|
|
|
between ``0x03060000`` and ``0x03060100`` (not including)
|
|
|
|
:c:func:`!PySlice_GetIndicesEx` is a deprecated function.
|
|
|
|
|
|
|
|
|
|
|
|
.. c:function:: int PySlice_Unpack(PyObject *slice, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step)
|
|
|
|
|
|
|
|
Extract the start, stop and step data members from a slice object as
|
|
|
|
C integers. Silently reduce values larger than ``PY_SSIZE_T_MAX`` to
|
|
|
|
``PY_SSIZE_T_MAX``, silently boost the start and stop values less than
|
|
|
|
``-PY_SSIZE_T_MAX-1`` to ``-PY_SSIZE_T_MAX-1``, and silently boost the step
|
|
|
|
values less than ``-PY_SSIZE_T_MAX`` to ``-PY_SSIZE_T_MAX``.
|
|
|
|
|
|
|
|
Return ``-1`` on error, ``0`` on success.
|
|
|
|
|
|
|
|
.. versionadded:: 3.6.1
|
|
|
|
|
|
|
|
|
|
|
|
.. c:function:: Py_ssize_t PySlice_AdjustIndices(Py_ssize_t length, Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t step)
|
|
|
|
|
|
|
|
Adjust start/end slice indices assuming a sequence of the specified length.
|
|
|
|
Out of bounds indices are clipped in a manner consistent with the handling
|
|
|
|
of normal slices.
|
|
|
|
|
|
|
|
Return the length of the slice. Always successful. Doesn't call Python
|
|
|
|
code.
|
|
|
|
|
|
|
|
.. versionadded:: 3.6.1
|
2017-04-14 16:18:35 -03:00
|
|
|
|
|
|
|
|
|
|
|
Ellipsis Object
|
|
|
|
---------------
|
|
|
|
|
|
|
|
|
|
|
|
.. c:var:: PyObject *Py_Ellipsis
|
|
|
|
|
|
|
|
The Python ``Ellipsis`` object. This object has no methods. It needs to be
|
|
|
|
treated just like any other object with respect to reference counts. Like
|
|
|
|
:c:data:`Py_None` it is a singleton object.
|