Home
last modified time | relevance | path

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

/third_party/python/Include/
Ddictobject.h72 #define PyDictItems_Check(op) PyObject_TypeCheck(op, &PyDictItems_Type) macro
75 (PyDictKeys_Check(op) || PyDictItems_Check(op))
/third_party/python/Objects/
Ddictobject.c4242 || PyDictItems_Check(view)); in dictview_mapping()
4543 assert(PyDictItems_Check(self)); in dictitems_xor()
4544 assert(PyDictItems_Check(other)); in dictitems_xor()
4630 if (PyDictItems_Check(self) && PyDictItems_Check(other)) { in dictviews_xor()