Searched refs:sq_item (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Objects/ |
D | typeslots.inc | 45 {offsetof(PySequenceMethods, sq_item), offsetof(PyTypeObject, tp_as_sequence)},
|
D | abstract.c | 164 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()
|
D | typeobject.c | 5838 COPYSEQ(sq_item); in inherit_slots() 8075 SQSLOT("__getitem__", sq_item, slot_sq_item, wrap_sq_item,
|
/third_party/python/Include/cpython/ |
D | abstract.h | 333 ( Py_TYPE(o)->tp_as_sequence->sq_item(o, i) )
|
D | object.h | 155 ssizeargfunc sq_item; member
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a2.rst | 186 Micro optimization when compute :c:member:`~PySequenceMethods.sq_item` and
|
D | 3.9.0a1.rst | 592 Fix handling of negative indices in :c:member:`~PySequenceMethods.sq_item`
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 307 …| :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/ |
D | HISTORY | 23193 sq_item without rechecking that o is a sequence and without
|