Searched refs:_PyList_CAST (Results 1 – 2 of 2) sorted by relevance
30 #define _PyList_CAST(op) (assert(PyList_Check(op)), (PyListObject *)(op)) macro32 #define PyList_GET_ITEM(op, i) (_PyList_CAST(op)->ob_item[i])33 #define PyList_SET_ITEM(op, i, v) ((void)(_PyList_CAST(op)->ob_item[i] = (v)))34 #define PyList_GET_SIZE(op) Py_SIZE(_PyList_CAST(op))
14 #define _PyList_ITEMS(op) (_PyList_CAST(op)->ob_item)