comparison CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/include/python3.8/boolobject.h @ 69:33d812a61356

planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author jpayne
date Tue, 18 Mar 2025 17:55:14 -0400
parents
children
comparison
equal deleted inserted replaced
67:0e9998148a16 69:33d812a61356
1 /* Boolean object interface */
2
3 #ifndef Py_BOOLOBJECT_H
4 #define Py_BOOLOBJECT_H
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8
9
10 PyAPI_DATA(PyTypeObject) PyBool_Type;
11
12 #define PyBool_Check(x) (Py_TYPE(x) == &PyBool_Type)
13
14 /* Py_False and Py_True are the only two bools in existence.
15 Don't forget to apply Py_INCREF() when returning either!!! */
16
17 /* Don't use these directly */
18 PyAPI_DATA(struct _longobject) _Py_FalseStruct, _Py_TrueStruct;
19
20 /* Use these macros */
21 #define Py_False ((PyObject *) &_Py_FalseStruct)
22 #define Py_True ((PyObject *) &_Py_TrueStruct)
23
24 /* Macros for returning Py_True or Py_False, respectively */
25 #define Py_RETURN_TRUE return Py_INCREF(Py_True), Py_True
26 #define Py_RETURN_FALSE return Py_INCREF(Py_False), Py_False
27
28 /* Function to return a bool from a C long */
29 PyAPI_FUNC(PyObject *) PyBool_FromLong(long);
30
31 #ifdef __cplusplus
32 }
33 #endif
34 #endif /* !Py_BOOLOBJECT_H */