Searched refs:sq_item (Results 1 – 8 of 8) sorted by relevance
45 offsetof(PyHeapTypeObject, as_sequence.sq_item),
163 if (ms && ms->sq_item) { in PyObject_GetItem()1593 Py_TYPE(s)->tp_as_sequence->sq_item != NULL; in PySequence_Check()1749 if (m && m->sq_item) { in PySequence_GetItem()1760 return m->sq_item(s, i); in PySequence_GetItem()
5258 COPYSEQ(sq_item); in inherit_slots()7292 SQSLOT("__getitem__", sq_item, slot_sq_item, wrap_sq_item,
343 ( Py_TYPE(o)->tp_as_sequence->sq_item(o, i) )
162 ssizeargfunc sq_item; member
305 …| :c:member:`~PySequenceMethods.sq_item` | :c:type:`ssizeargfunc` | __…2128 handling negative indices via the :c:member:`~PySequenceMethods.sq_item`2143 .. c:member:: ssizeargfunc PySequenceMethods.sq_item2153 index which is passed to :attr:`sq_item`. If :attr:`sq_length` is ``NULL``,
4150 :c:member:`~PySequenceMethods.sq_item` of :class:`bytearray`. Patch by
23193 sq_item without rechecking that o is a sequence and without