Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 1 | .. highlightlang:: c |
| 2 | |
| 3 | .. _sequence: |
| 4 | |
| 5 | Sequence Protocol |
| 6 | ================= |
| 7 | |
| 8 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 9 | .. c:function:: int PySequence_Check(PyObject *o) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 10 | |
| 11 | Return ``1`` if the object provides sequence protocol, and ``0`` otherwise. |
| 12 | This function always succeeds. |
| 13 | |
| 14 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 15 | .. c:function:: Py_ssize_t PySequence_Size(PyObject *o) |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 16 | Py_ssize_t PySequence_Length(PyObject *o) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 17 | |
| 18 | .. index:: builtin: len |
| 19 | |
| 20 | Returns the number of objects in sequence *o* on success, and ``-1`` on failure. |
| 21 | For objects that do not provide sequence protocol, this is equivalent to the |
| 22 | Python expression ``len(o)``. |
| 23 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 24 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 25 | These functions returned an :c:type:`int` type. This might require |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 26 | changes in your code for properly supporting 64-bit systems. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 27 | |
| 28 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 29 | .. c:function:: PyObject* PySequence_Concat(PyObject *o1, PyObject *o2) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 30 | |
| 31 | Return the concatenation of *o1* and *o2* on success, and *NULL* on failure. |
| 32 | This is the equivalent of the Python expression ``o1 + o2``. |
| 33 | |
| 34 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 35 | .. c:function:: PyObject* PySequence_Repeat(PyObject *o, Py_ssize_t count) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 36 | |
| 37 | Return the result of repeating sequence object *o* *count* times, or *NULL* on |
| 38 | failure. This is the equivalent of the Python expression ``o * count``. |
| 39 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 40 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 41 | This function used an :c:type:`int` type for *count*. This might require |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 42 | changes in your code for properly supporting 64-bit systems. |
| 43 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 44 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 45 | .. c:function:: PyObject* PySequence_InPlaceConcat(PyObject *o1, PyObject *o2) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 46 | |
| 47 | Return the concatenation of *o1* and *o2* on success, and *NULL* on failure. |
| 48 | The operation is done *in-place* when *o1* supports it. This is the equivalent |
| 49 | of the Python expression ``o1 += o2``. |
| 50 | |
| 51 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 52 | .. c:function:: PyObject* PySequence_InPlaceRepeat(PyObject *o, Py_ssize_t count) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 53 | |
| 54 | Return the result of repeating sequence object *o* *count* times, or *NULL* on |
| 55 | failure. The operation is done *in-place* when *o* supports it. This is the |
| 56 | equivalent of the Python expression ``o *= count``. |
| 57 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 58 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 59 | This function used an :c:type:`int` type for *count*. This might require |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 60 | changes in your code for properly supporting 64-bit systems. |
| 61 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 62 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 63 | .. c:function:: PyObject* PySequence_GetItem(PyObject *o, Py_ssize_t i) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 64 | |
Georg Brandl | 6a46898 | 2009-05-30 10:33:23 +0000 | [diff] [blame] | 65 | Return the *i*\ th element of *o*, or *NULL* on failure. This is the equivalent of |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 66 | the Python expression ``o[i]``. |
| 67 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 68 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 69 | This function used an :c:type:`int` type for *i*. This might require |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 70 | changes in your code for properly supporting 64-bit systems. |
| 71 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 72 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 73 | .. c:function:: PyObject* PySequence_GetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 74 | |
| 75 | Return the slice of sequence object *o* between *i1* and *i2*, or *NULL* on |
| 76 | failure. This is the equivalent of the Python expression ``o[i1:i2]``. |
| 77 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 78 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 79 | This function used an :c:type:`int` type for *i1* and *i2*. This might |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 80 | require changes in your code for properly supporting 64-bit systems. |
| 81 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 82 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 83 | .. c:function:: int PySequence_SetItem(PyObject *o, Py_ssize_t i, PyObject *v) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 84 | |
Georg Brandl | 6a46898 | 2009-05-30 10:33:23 +0000 | [diff] [blame] | 85 | Assign object *v* to the *i*\ th element of *o*. Returns ``-1`` on failure. This |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 86 | is the equivalent of the Python statement ``o[i] = v``. This function *does |
| 87 | not* steal a reference to *v*. |
| 88 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 89 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 90 | This function used an :c:type:`int` type for *i*. This might require |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 91 | changes in your code for properly supporting 64-bit systems. |
| 92 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 93 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 94 | .. c:function:: int PySequence_DelItem(PyObject *o, Py_ssize_t i) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 95 | |
Georg Brandl | 6a46898 | 2009-05-30 10:33:23 +0000 | [diff] [blame] | 96 | Delete the *i*\ th element of object *o*. Returns ``-1`` on failure. This is the |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 97 | equivalent of the Python statement ``del o[i]``. |
| 98 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 99 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 100 | This function used an :c:type:`int` type for *i*. This might require |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 101 | changes in your code for properly supporting 64-bit systems. |
| 102 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 103 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 104 | .. c:function:: int PySequence_SetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2, PyObject *v) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 105 | |
| 106 | Assign the sequence object *v* to the slice in sequence object *o* from *i1* to |
| 107 | *i2*. This is the equivalent of the Python statement ``o[i1:i2] = v``. |
| 108 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 109 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 110 | This function used an :c:type:`int` type for *i1* and *i2*. This might |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 111 | require changes in your code for properly supporting 64-bit systems. |
| 112 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 113 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 114 | .. c:function:: int PySequence_DelSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 115 | |
| 116 | Delete the slice in sequence object *o* from *i1* to *i2*. Returns ``-1`` on |
| 117 | failure. This is the equivalent of the Python statement ``del o[i1:i2]``. |
| 118 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 119 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 120 | This function used an :c:type:`int` type for *i1* and *i2*. This might |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 121 | require changes in your code for properly supporting 64-bit systems. |
| 122 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 123 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 124 | .. c:function:: Py_ssize_t PySequence_Count(PyObject *o, PyObject *value) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 125 | |
| 126 | Return the number of occurrences of *value* in *o*, that is, return the number |
| 127 | of keys for which ``o[key] == value``. On failure, return ``-1``. This is |
| 128 | equivalent to the Python expression ``o.count(value)``. |
| 129 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 130 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 131 | This function returned an :c:type:`int` type. This might require changes |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 132 | in your code for properly supporting 64-bit systems. |
| 133 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 134 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 135 | .. c:function:: int PySequence_Contains(PyObject *o, PyObject *value) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 136 | |
| 137 | Determine if *o* contains *value*. If an item in *o* is equal to *value*, |
| 138 | return ``1``, otherwise return ``0``. On error, return ``-1``. This is |
| 139 | equivalent to the Python expression ``value in o``. |
| 140 | |
| 141 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 142 | .. c:function:: Py_ssize_t PySequence_Index(PyObject *o, PyObject *value) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 143 | |
| 144 | Return the first index *i* for which ``o[i] == value``. On error, return |
| 145 | ``-1``. This is equivalent to the Python expression ``o.index(value)``. |
| 146 | |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 147 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 148 | This function returned an :c:type:`int` type. This might require changes |
Jeroen Ruigrok van der Werven | 089c5cd | 2009-04-25 17:59:03 +0000 | [diff] [blame] | 149 | in your code for properly supporting 64-bit systems. |
| 150 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 151 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 152 | .. c:function:: PyObject* PySequence_List(PyObject *o) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 153 | |
| 154 | Return a list object with the same contents as the arbitrary sequence *o*. The |
| 155 | returned list is guaranteed to be new. |
| 156 | |
| 157 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 158 | .. c:function:: PyObject* PySequence_Tuple(PyObject *o) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 159 | |
| 160 | .. index:: builtin: tuple |
| 161 | |
| 162 | Return a tuple object with the same contents as the arbitrary sequence *o* or |
| 163 | *NULL* on failure. If *o* is a tuple, a new reference will be returned, |
| 164 | otherwise a tuple will be constructed with the appropriate contents. This is |
| 165 | equivalent to the Python expression ``tuple(o)``. |
| 166 | |
| 167 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 168 | .. c:function:: PyObject* PySequence_Fast(PyObject *o, const char *m) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 169 | |
| 170 | Returns the sequence *o* as a tuple, unless it is already a tuple or list, in |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 171 | which case *o* is returned. Use :c:func:`PySequence_Fast_GET_ITEM` to access the |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 172 | members of the result. Returns *NULL* on failure. If the object is not a |
| 173 | sequence, raises :exc:`TypeError` with *m* as the message text. |
| 174 | |
| 175 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 176 | .. c:function:: PyObject* PySequence_Fast_GET_ITEM(PyObject *o, Py_ssize_t i) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 177 | |
Georg Brandl | 6a46898 | 2009-05-30 10:33:23 +0000 | [diff] [blame] | 178 | Return the *i*\ th element of *o*, assuming that *o* was returned by |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 179 | :c:func:`PySequence_Fast`, *o* is not *NULL*, and that *i* is within bounds. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 180 | |
Jeroen Ruigrok van der Werven | 3637871 | 2009-04-25 20:50:27 +0000 | [diff] [blame] | 181 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 182 | This function used an :c:type:`int` type for *i*. This might require |
Jeroen Ruigrok van der Werven | 3637871 | 2009-04-25 20:50:27 +0000 | [diff] [blame] | 183 | changes in your code for properly supporting 64-bit systems. |
| 184 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 185 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 186 | .. c:function:: PyObject** PySequence_Fast_ITEMS(PyObject *o) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 187 | |
| 188 | Return the underlying array of PyObject pointers. Assumes that *o* was returned |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 189 | by :c:func:`PySequence_Fast` and *o* is not *NULL*. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 190 | |
Raymond Hettinger | 8dbbb96 | 2008-07-11 12:00:21 +0000 | [diff] [blame] | 191 | Note, if a list gets resized, the reallocation may relocate the items array. |
Georg Brandl | c62ef8b | 2009-01-03 20:55:06 +0000 | [diff] [blame] | 192 | So, only use the underlying array pointer in contexts where the sequence |
Raymond Hettinger | 8dbbb96 | 2008-07-11 12:00:21 +0000 | [diff] [blame] | 193 | cannot change. |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 194 | |
| 195 | .. versionadded:: 2.4 |
| 196 | |
| 197 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 198 | .. c:function:: PyObject* PySequence_ITEM(PyObject *o, Py_ssize_t i) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 199 | |
Georg Brandl | 6a46898 | 2009-05-30 10:33:23 +0000 | [diff] [blame] | 200 | Return the *i*\ th element of *o* or *NULL* on failure. Macro form of |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 201 | :c:func:`PySequence_GetItem` but without checking that |
| 202 | :c:func:`PySequence_Check` on *o* is true and without adjustment for negative |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 203 | indices. |
| 204 | |
| 205 | .. versionadded:: 2.3 |
| 206 | |
Jeroen Ruigrok van der Werven | 3637871 | 2009-04-25 20:50:27 +0000 | [diff] [blame] | 207 | .. versionchanged:: 2.5 |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 208 | This function used an :c:type:`int` type for *i*. This might require |
Jeroen Ruigrok van der Werven | 3637871 | 2009-04-25 20:50:27 +0000 | [diff] [blame] | 209 | changes in your code for properly supporting 64-bit systems. |
| 210 | |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 211 | |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 212 | .. c:function:: Py_ssize_t PySequence_Fast_GET_SIZE(PyObject *o) |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 213 | |
| 214 | Returns the length of *o*, assuming that *o* was returned by |
Sandro Tosi | 98ed08f | 2012-01-14 16:42:02 +0100 | [diff] [blame] | 215 | :c:func:`PySequence_Fast` and that *o* is not *NULL*. The size can also be |
| 216 | gotten by calling :c:func:`PySequence_Size` on *o*, but |
| 217 | :c:func:`PySequence_Fast_GET_SIZE` is faster because it can assume *o* is a list |
Georg Brandl | f684272 | 2008-01-19 22:08:21 +0000 | [diff] [blame] | 218 | or tuple. |