Home
last modified time | relevance | path

Searched refs:PyDictItems_Type (Results 1 – 7 of 7) 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/cpython3/Include/
Ddictobject.h55 PyAPI_DATA(PyTypeObject) PyDictItems_Type;
62 #define PyDictItems_Check(op) PyObject_TypeCheck(op, &PyDictItems_Type)
/external/python/cpython3/PC/
Dpython3.def87 PyDictItems_Type=python37.PyDictItems_Type DATA
/external/python/cpython2/Objects/
Ddictobject.c3250 PyTypeObject PyDictItems_Type = { variable
3287 return dictview_new(dict, &PyDictItems_Type); in dictitems_new()
/external/python/cpython3/Objects/
Dodictobject.c2020 &PyDictItems_Type, /* tp_base */
Dobject.c1792 if (PyType_Ready(&PyDictItems_Type) < 0) in _Py_ReadyTypes()
Ddictobject.c4160 PyTypeObject PyDictItems_Type = { variable
4196 return _PyDictView_New(dict, &PyDictItems_Type); in dictitems_new()