2002-04-04 07:01:45 +08:00
|
|
|
/* Boolean object interface */
|
|
|
|
|
2002-04-06 11:58:41 +08:00
|
|
|
#ifndef Py_BOOLOBJECT_H
|
|
|
|
#define Py_BOOLOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-08-12 15:21:58 +08:00
|
|
|
PyAPI_DATA(PyTypeObject) PyBool_Type;
|
2002-04-04 07:01:45 +08:00
|
|
|
|
2020-02-14 01:37:17 +08:00
|
|
|
#define PyBool_Check(x) Py_IS_TYPE(x, &PyBool_Type)
|
2002-04-04 07:01:45 +08: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 */
|
2021-04-23 20:14:00 +08:00
|
|
|
PyAPI_DATA(struct _longobject) _Py_FalseStruct;
|
|
|
|
PyAPI_DATA(struct _longobject) _Py_TrueStruct;
|
2002-04-04 07:01:45 +08:00
|
|
|
|
|
|
|
/* Use these macros */
|
2007-01-14 11:31:43 +08:00
|
|
|
#define Py_False ((PyObject *) &_Py_FalseStruct)
|
2002-04-04 07:01:45 +08:00
|
|
|
#define Py_True ((PyObject *) &_Py_TrueStruct)
|
|
|
|
|
2021-04-11 06:17:39 +08: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-20 05:19:40 +08:00
|
|
|
/* Macros for returning Py_True or Py_False, respectively */
|
2020-11-05 22:02:12 +08:00
|
|
|
#define Py_RETURN_TRUE return Py_NewRef(Py_True)
|
|
|
|
#define Py_RETURN_FALSE return Py_NewRef(Py_False)
|
2003-10-20 05:19:40 +08:00
|
|
|
|
2002-04-04 07:01:45 +08:00
|
|
|
/* Function to return a bool from a C long */
|
2002-08-12 15:21:58 +08:00
|
|
|
PyAPI_FUNC(PyObject *) PyBool_FromLong(long);
|
2002-04-06 11:58:41 +08:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_BOOLOBJECT_H */
|