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
|
|
|
|
|
|
|
|
|
2023-12-03 07:16:31 -04:00
|
|
|
// PyBool_Type is declared by object.h
|
2002-04-03 19:01:45 -04:00
|
|
|
|
2022-06-16 08:49:43 -03:00
|
|
|
#define PyBool_Check(x) Py_IS_TYPE((x), &PyBool_Type)
|
2002-04-03 19:01:45 -04:00
|
|
|
|
2023-04-22 16:39:37 -03:00
|
|
|
/* Py_False and Py_True are the only two bools in existence. */
|
2002-04-03 19:01:45 -04:00
|
|
|
|
|
|
|
/* 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 */
|
2024-03-21 13:07:00 -03:00
|
|
|
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030D0000
|
|
|
|
# define Py_False Py_GetConstantBorrowed(Py_CONSTANT_FALSE)
|
|
|
|
# define Py_True Py_GetConstantBorrowed(Py_CONSTANT_TRUE)
|
|
|
|
#else
|
|
|
|
# define Py_False _PyObject_CAST(&_Py_FalseStruct)
|
|
|
|
# define Py_True _PyObject_CAST(&_Py_TrueStruct)
|
|
|
|
#endif
|
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 */
|
2023-04-22 16:39:37 -03:00
|
|
|
#define Py_RETURN_TRUE return Py_True
|
|
|
|
#define Py_RETURN_FALSE return 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 */
|