Searched defs:PyDict_GET_SIZE (Results 1 – 5 of 5) sorted by relevance
55 static inline Py_ssize_t PyDict_GET_SIZE(PyObject *op) { in PyDict_GET_SIZE() function65 #define PyDict_GET_SIZE(op) PyDict_GET_SIZE(_PyObject_CAST(op)) macro
49 #define PyDict_GET_SIZE(mp) (assert(PyDict_Check(mp)),((PyDictObject *)mp)->ma_used) macro