Home
last modified time | relevance | path

Searched refs:_PyList_CAST (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Include/cpython/
Dlistobject.h30 #define _PyList_CAST(op) (assert(PyList_Check(op)), (PyListObject *)(op)) macro
32 #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))
/third_party/python/Include/internal/
Dpycore_list.h14 #define _PyList_ITEMS(op) (_PyList_CAST(op)->ob_item)