and that \var{i} is within bounds.
\end{cfuncdesc}
+\begin{cfuncdesc}{PyObject**}{PySequence_Fast_ITEMS}{PyObject *o}
+ Return the underlying array of PyObject pointers. Assumes that
+ \var{o} was returned by \cfunction{PySequence_Fast()} and
+ \var{o} is not \NULL.
+ \versionadded{2.4}
+\end{cfuncdesc}
+
\begin{cfuncdesc}{PyObject*}{PySequence_ITEM}{PyObject *o, int i}
Return the \var{i}th element of \var{o} or \NULL{} on failure.
Macro form of \cfunction{PySequence_GetItem()} but without checking
need to be corrected for a negative index
*/
+#define _PySequence_Fast_ITEMS(sf) \
+ (PyList_Check(sf) ? ((PyListObject *)(sf))->ob_item \
+ : ((PyTupleObject *)(sf))->ob_item)
+ /* Return a pointer to the underlying item array for
+ an object retured by PySequence_Fast */
+
PyAPI_FUNC(int) PySequence_Count(PyObject *o, PyObject *value);
/*
C API
-----
+- Added a new macro, PySequence_Fast_ITEMS, which retrieves a fast sequence's
+ underlying array of PyObject pointers. Useful for high speed looping.
+
- Created a new method flag, METH_COEXIST, which causes a method to be loaded
even if already defined by a slot wrapper. This allows a __contains__
method, for example, to co-exist with a defined sq_contains slot. This
if(v_as_SF == NULL)
return -1;
n = PySequence_Fast_GET_SIZE(v_as_SF);
- if (PyList_Check(v_as_SF))
- vitem = ((PyListObject *)v_as_SF)->ob_item;
- else {
- assert (PyTuple_Check(v_as_SF));
- vitem = ((PyTupleObject *)v_as_SF)->ob_item;
- }
+ vitem = _PySequence_Fast_ITEMS(v_as_SF);
}
if (ilow < 0)
ilow = 0;
}
/* populate the end of self with b's items */
- if (PyList_Check(b))
- src = ((PyListObject *)b)->ob_item;
- else {
- assert (PyTuple_Check(b));
- src = ((PyTupleObject *)b)->ob_item;
- }
+ src = _PySequence_Fast_ITEMS(b);
dest = self->ob_item + selflen;
for (i = 0; i < blen; i++) {
PyObject *o = src[i];
PyMem_MALLOC(slicelength*sizeof(PyObject*));
selfitems = self->ob_item;
- if (PyList_Check(seq))
- seqitems = ((PyListObject *)seq)->ob_item;
- else
- seqitems = ((PyTupleObject *)seq)->ob_item;
+ seqitems = _PySequence_Fast_ITEMS(seq);
for (cur = start, i = 0; i < slicelength;
cur += step, i++) {
garbage[i] = selfitems[cur];