Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Ddictobject.h97 PyAPI_DATA(PyTypeObject) PyDictValues_Type;
104 #define PyDictValues_Check(op) (Py_TYPE(op) == &PyDictValues_Type)
/external/python/cpython2/Objects/
Ddictobject.c3241 PyTypeObject PyDictValues_Type = { variable
3277 return dictview_new(dict, &PyDictValues_Type); in dictvalues_new()