Sequence Protocol¶
- int
PySequence_Check(PyObject *o)¶ Return
1if the object provides sequence protocol, and0otherwise.This function always succeeds.
- Py_ssize_t
PySequence_Size(PyObject *o)¶ - Py_ssize_t
PySequence_Length(PyObject *o)¶ Returns the number of objects in sequenceo on success, and
-1onfailure. This is equivalent to the Python expressionlen(o).Changed in version 2.5:These functions returned an
inttype. This might requirechanges in your code for properly supporting 64-bit systems.
- PyObject*
PySequence_Concat(PyObject *o1,PyObject *o2)¶ - Return value: New reference.
Return the concatenation ofo1 ando2 on success, andNULL on failure.This is the equivalent of the Python expression
o1+o2.
- PyObject*
PySequence_Repeat(PyObject *o, Py_ssize_t count)¶ - Return value: New reference.
Return the result of repeating sequence objectocount times, orNULL onfailure. This is the equivalent of the Python expression
o*count.Changed in version 2.5:This function used an
inttype forcount. This might requirechanges in your code for properly supporting 64-bit systems.
- PyObject*
PySequence_InPlaceConcat(PyObject *o1,PyObject *o2)¶ - Return value: New reference.
Return the concatenation ofo1 ando2 on success, andNULL on failure.The operation is donein-place wheno1 supports it. This is the equivalentof the Python expression
o1+=o2.
- PyObject*
PySequence_InPlaceRepeat(PyObject *o, Py_ssize_t count)¶ - Return value: New reference.
Return the result of repeating sequence objectocount times, orNULL onfailure. The operation is donein-place wheno supports it. This is theequivalent of the Python expression
o*=count.Changed in version 2.5:This function used an
inttype forcount. This might requirechanges in your code for properly supporting 64-bit systems.
- PyObject*
PySequence_GetItem(PyObject *o, Py_ssize_t i)¶ - Return value: New reference.
Return theith element ofo, orNULL on failure. This is the equivalent ofthe Python expression
o[i].Changed in version 2.5:This function used an
inttype fori. This might requirechanges in your code for properly supporting 64-bit systems.
- PyObject*
PySequence_GetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2)¶ - Return value: New reference.
Return the slice of sequence objecto betweeni1 andi2, orNULL onfailure. This is the equivalent of the Python expression
o[i1:i2].Changed in version 2.5:This function used an
inttype fori1 andi2. This mightrequire changes in your code for properly supporting 64-bit systems.
- int
PySequence_SetItem(PyObject *o, Py_ssize_t i,PyObject *v)¶ Assign objectv to theith element ofo. Raise an exceptionand return
-1on failure; return0on success. Thisis the equivalent of the Python statemento[i]=v. This functiondoesnot steal a reference tov.Ifv isNULL, the element is deleted, however this feature isdeprecated in favour of using
PySequence_DelItem().Changed in version 2.5:This function used an
inttype fori. This might requirechanges in your code for properly supporting 64-bit systems.
- int
PySequence_DelItem(PyObject *o, Py_ssize_t i)¶ Delete theith element of objecto. Returns
-1on failure. This is theequivalent of the Python statementdelo[i].Changed in version 2.5:This function used an
inttype fori. This might requirechanges in your code for properly supporting 64-bit systems.
- int
PySequence_SetSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2,PyObject *v)¶ Assign the sequence objectv to the slice in sequence objecto fromi1 toi2. Raise an exception and return
-1on failure; return0on success.This is the equivalent of the Python statemento[i1:i2]=v.Ifv isNULL, the slice is deleted, however this feature isdeprecated in favour of using
PySequence_DelSlice().Changed in version 2.5:This function used an
inttype fori1 andi2. This mightrequire changes in your code for properly supporting 64-bit systems.
- int
PySequence_DelSlice(PyObject *o, Py_ssize_t i1, Py_ssize_t i2)¶ Delete the slice in sequence objecto fromi1 toi2. Returns
-1onfailure. This is the equivalent of the Python statementdelo[i1:i2].Changed in version 2.5:This function used an
inttype fori1 andi2. This mightrequire changes in your code for properly supporting 64-bit systems.
- Py_ssize_t
PySequence_Count(PyObject *o,PyObject *value)¶ Return the number of occurrences ofvalue ino, that is, return the numberof keys for which
o[key]==value. On failure, return-1. This isequivalent to the Python expressiono.count(value).Changed in version 2.5:This function returned an
inttype. This might require changesin your code for properly supporting 64-bit systems.
- int
PySequence_Contains(PyObject *o,PyObject *value)¶ Determine ifo containsvalue. If an item ino is equal tovalue,return
1, otherwise return0. On error, return-1. This isequivalent to the Python expressionvalueino.
- Py_ssize_t
PySequence_Index(PyObject *o,PyObject *value)¶ Return the first indexi for which
o[i]==value. On error, return-1. This is equivalent to the Python expressiono.index(value).Changed in version 2.5:This function returned an
inttype. This might require changesin your code for properly supporting 64-bit systems.
- PyObject*
PySequence_List(PyObject *o)¶ - Return value: New reference.
Return a list object with the same contents as the arbitrary sequenceo. Thereturned list is guaranteed to be new.
- PyObject*
PySequence_Tuple(PyObject *o)¶ - Return value: New reference.
Return a tuple object with the same contents as the arbitrary sequenceo orNULL on failure. Ifo is a tuple, a new reference will be returned,otherwise a tuple will be constructed with the appropriate contents. This isequivalent to the Python expression
tuple(o).
- PyObject*
PySequence_Fast(PyObject *o, const char *m)¶ - Return value: New reference.
Return the sequenceo as a list, unless it is already a tuple or list, inwhich caseo is returned. Use
PySequence_Fast_GET_ITEM()to accessthe members of the result. ReturnsNULL on failure. If the object is nota sequence, raisesTypeErrorwithm as the message text.
- PyObject*
PySequence_Fast_GET_ITEM(PyObject *o, Py_ssize_t i)¶ - Return value: Borrowed reference.
Return theith element ofo, assuming thato was returned by
PySequence_Fast(),o is notNULL, and thati is within bounds.Changed in version 2.5:This function used an
inttype fori. This might requirechanges in your code for properly supporting 64-bit systems.
- PyObject**
PySequence_Fast_ITEMS(PyObject *o)¶ Return the underlying array of PyObject pointers. Assumes thato was returnedby
PySequence_Fast()ando is notNULL.Note, if a list gets resized, the reallocation may relocate the items array.So, only use the underlying array pointer in contexts where the sequencecannot change.
New in version 2.4.
- PyObject*
PySequence_ITEM(PyObject *o, Py_ssize_t i)¶ - Return value: New reference.
Return theith element ofo orNULL on failure. Macro form of
PySequence_GetItem()but without checking thatPySequence_Check()ono is true and without adjustment for negativeindices.New in version 2.3.
Changed in version 2.5:This function used an
inttype fori. This might requirechanges in your code for properly supporting 64-bit systems.
- Py_ssize_t
PySequence_Fast_GET_SIZE(PyObject *o)¶ Returns the length ofo, assuming thato was returned by
PySequence_Fast()and thato is notNULL. The size can also begotten by callingPySequence_Size()ono, butPySequence_Fast_GET_SIZE()is faster because it can assumeo is a listor tuple.
