Home
last modified time | relevance | path

Searched defs:PyDict_CheckExact (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Modules/_sqlite/
Dsqlitecompat.h39 #define PyDict_CheckExact(op) ((op)->ob_type == &PyDict_Type) macro
/external/python/cpython3/Include/
Ddictobject.h19 #define PyDict_CheckExact(op) Py_IS_TYPE(op, &PyDict_Type) macro
/external/python/cpython2/Include/
Ddictobject.h101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type) macro
/external/python/cpython2/Modules/_ctypes/
Dctypes.h11 #define PyDict_CheckExact(ob) (Py_TYPE(ob) == &PyDict_Type) macro
/external/python/cpython2/Modules/
D_elementtree.c109 #define PyDict_CheckExact PyDict_Check macro