Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dtypeslots.inc45 {offsetof(PySequenceMethods, sq_item), offsetof(PyTypeObject, tp_as_sequence)},
Dabstract.c164 if (ms && ms->sq_item) { in PyObject_GetItem()
1726 Py_TYPE(s)->tp_as_sequence->sq_item != NULL; in PySequence_Check()
1888 if (m && m->sq_item) { in PySequence_GetItem()
1899 PyObject *res = m->sq_item(s, i); in PySequence_GetItem()
Dtypeobject.c5838 COPYSEQ(sq_item); in inherit_slots()
8075 SQSLOT("__getitem__", sq_item, slot_sq_item, wrap_sq_item,
/third_party/python/Include/cpython/
Dabstract.h333 ( Py_TYPE(o)->tp_as_sequence->sq_item(o, i) )
Dobject.h155 ssizeargfunc sq_item; member
/third_party/python/Misc/NEWS.d/
D3.10.0a2.rst186 Micro optimization when compute :c:member:`~PySequenceMethods.sq_item` and
D3.9.0a1.rst592 Fix handling of negative indices in :c:member:`~PySequenceMethods.sq_item`
/third_party/python/Doc/c-api/
Dtypeobj.rst307 …| :c:member:`~PySequenceMethods.sq_item` | :c:type:`ssizeargfunc` | __…
2244 handling negative indices via the :c:member:`~PySequenceMethods.sq_item`
2259 .. c:member:: ssizeargfunc PySequenceMethods.sq_item
2269 index which is passed to :attr:`sq_item`. If :attr:`sq_length` is ``NULL``,
/third_party/python/Misc/
DHISTORY23193 sq_item without rechecking that o is a sequence and without