Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Ddictobject.h96 PyAPI_DATA(PyTypeObject) PyDictItems_Type;
103 #define PyDictItems_Check(op) (Py_TYPE(op) == &PyDictItems_Type)
/external/python/cpython2/Objects/
Ddictobject.c3175 PyTypeObject PyDictItems_Type = { variable
3212 return dictview_new(dict, &PyDictItems_Type); in dictitems_new()