#ifndef Py_BOOLOBJECT_H
#define Py_BOOLOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif
#define PyBool_Check(x) …
PyAPI_DATA(PyLongObject) _Py_FalseStruct;
PyAPI_DATA(PyLongObject) _Py_TrueStruct;
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030D0000
#define Py_False …
#define Py_True …
#else
#define Py_False …
#define Py_True …
#endif
PyAPI_FUNC(int) Py_IsTrue(PyObject *x);
#define Py_IsTrue(x) …
PyAPI_FUNC(int) Py_IsFalse(PyObject *x);
#define Py_IsFalse(x) …
#define Py_RETURN_TRUE …
#define Py_RETURN_FALSE …
PyAPI_FUNC(PyObject *) PyBool_FromLong(long);
#ifdef __cplusplus
}
#endif
#endif