Home
last modified time | relevance | path

Searched refs:sq_item (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Objects/
Dtypeslots.inc45 offsetof(PyHeapTypeObject, as_sequence.sq_item),
Dabstract.c163 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()
Dtypeobject.c5258 COPYSEQ(sq_item); in inherit_slots()
7292 SQSLOT("__getitem__", sq_item, slot_sq_item, wrap_sq_item,
/third_party/python/Include/cpython/
Dabstract.h343 ( Py_TYPE(o)->tp_as_sequence->sq_item(o, i) )
Dobject.h162 ssizeargfunc sq_item; member
/third_party/python/Doc/c-api/
Dtypeobj.rst305 …| :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_item
2153 index which is passed to :attr:`sq_item`. If :attr:`sq_length` is ``NULL``,
/third_party/python/Misc/
DNEWS4150 :c:member:`~PySequenceMethods.sq_item` of :class:`bytearray`. Patch by
DHISTORY23193 sq_item without rechecking that o is a sequence and without