Home
last modified time | relevance | path

Searched defs:PyType_CheckExact (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Include/
Dobject.h787 static inline int PyType_CheckExact(PyObject *op) { in PyType_CheckExact() function
791 # define PyType_CheckExact(op) PyType_CheckExact(_PyObject_CAST(op)) macro
/external/python/cpython2/Include/
Dobject.h447 #define PyType_CheckExact(op) (Py_TYPE(op) == &PyType_Type) macro