2002-04-03 19:01:45 -04:00
|
|
|
/* Boolean object interface */
|
|
|
|
|
2002-04-05 23:58:41 -04:00
|
|
|
#ifndef Py_BOOLOBJECT_H
|
|
|
|
#define Py_BOOLOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_DATA(PyTypeObject) PyBool_Type;
|
2002-04-03 19:01:45 -04:00
|
|
|
|
2020-02-13 13:37:17 -04:00
|
|
|
#define PyBool_Check(x) Py_IS_TYPE(x, &PyBool_Type)
|
2002-04-03 19:01:45 -04:00
|
|
|
|
|
|
|
/* Py_False and Py_True are the only two bools in existence.
|
|
|
|
Don't forget to apply Py_INCREF() when returning either!!! */
|
|
|
|
|
|
|
|
/* Don't use these directly */
|
2022-02-24 12:51:59 -04:00
|
|
|
PyAPI_DATA(PyLongObject) _Py_FalseStruct;
|
|
|
|
PyAPI_DATA(PyLongObject) _Py_TrueStruct;
|
2002-04-03 19:01:45 -04:00
|
|
|
|
|
|
|
/* Use these macros */
|
2022-06-02 19:59:57 -03:00
|
|
|
#define Py_False _PyObject_CAST(&_Py_FalseStruct)
|
|
|
|
#define Py_True _PyObject_CAST(&_Py_TrueStruct)
|
2002-04-03 19:01:45 -04:00
|
|
|
|
2021-04-10 19:17:39 -03:00
|
|
|
// Test if an object is the True singleton, the same as "x is True" in Python.
|
|
|
|
PyAPI_FUNC(int) Py_IsTrue(PyObject *x);
|
|
|
|
#define Py_IsTrue(x) Py_Is((x), Py_True)
|
|
|
|
|
|
|
|
// Test if an object is the False singleton, the same as "x is False" in Python.
|
|
|
|
PyAPI_FUNC(int) Py_IsFalse(PyObject *x);
|
|
|
|
#define Py_IsFalse(x) Py_Is((x), Py_False)
|
|
|
|
|
2003-10-19 18:19:40 -03:00
|
|
|
/* Macros for returning Py_True or Py_False, respectively */
|
2020-11-05 10:02:12 -04:00
|
|
|
#define Py_RETURN_TRUE return Py_NewRef(Py_True)
|
|
|
|
#define Py_RETURN_FALSE return Py_NewRef(Py_False)
|
2003-10-19 18:19:40 -03:00
|
|
|
|
2002-04-03 19:01:45 -04:00
|
|
|
/* Function to return a bool from a C long */
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyBool_FromLong(long);
|
2002-04-05 23:58:41 -04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_BOOLOBJECT_H */
|