Home
last modified time | relevance | path

Searched defs:PyBool_Check (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dboolobject.h14 #define PyBool_Check(x) (Py_TYPE(x) == &PyBool_Type) macro
/external/python/cpython3/Include/
Dboolobject.h12 #define PyBool_Check(x) Py_IS_TYPE(x, &PyBool_Type) macro
/external/python/pybind11/include/pybind11/
Dpytypes.h1078 PYBIND11_OBJECT_CVT(bool_, object, PyBool_Check, raw_bool) in PYBIND11_OBJECT_CVT() argument
/external/python/cpython2/Modules/
D_tkinter.c46 #define PyBool_Check(o) 0 macro