- Got rid of newmodule.c
[python/dscho.git] / Include / boolobject.h
blob02591265c091f3893ec0d1e9e36c94f7e268fb4a
1 /* Boolean object interface */
3 #ifndef Py_BOOLOBJECT_H
4 #define Py_BOOLOBJECT_H
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
10 typedef PyIntObject PyBoolObject;
12 extern DL_IMPORT(PyTypeObject) PyBool_Type;
14 #define PyBool_Check(x) ((x)->ob_type == &PyBool_Type)
16 /* Py_False and Py_True are the only two bools in existence.
17 Don't forget to apply Py_INCREF() when returning either!!! */
19 /* Don't use these directly */
20 extern DL_IMPORT(PyIntObject) _Py_ZeroStruct, _Py_TrueStruct;
22 /* Use these macros */
23 #define Py_False ((PyObject *) &_Py_ZeroStruct)
24 #define Py_True ((PyObject *) &_Py_TrueStruct)
26 /* Function to return a bool from a C long */
27 extern DL_IMPORT(PyObject *) PyBool_FromLong(long);
29 #ifdef __cplusplus
31 #endif
32 #endif /* !Py_BOOLOBJECT_H */