Home
last modified time | relevance | path

Searched defs:PyList_GET_SIZE (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Include/
Dlistobject.h63 #define PyList_GET_SIZE(op) Py_SIZE(op) macro
/external/python/cpython3/Include/
Dlistobject.h74 #define PyList_GET_SIZE(op) (assert(PyList_Check(op)),Py_SIZE(op)) macro