Searched defs:PyBool_Check (Results 1 – 4 of 4) sorted by relevance
14 #define PyBool_Check(x) (Py_TYPE(x) == &PyBool_Type) macro
12 #define PyBool_Check(x) Py_IS_TYPE(x, &PyBool_Type) macro
1078 PYBIND11_OBJECT_CVT(bool_, object, PyBool_Check, raw_bool) in PYBIND11_OBJECT_CVT() argument
46 #define PyBool_Check(o) 0 macro