Go to the documentation of this file.
3 #ifndef Py_BOOLOBJECT_H
4 #define Py_BOOLOBJECT_H
14 #define PyBool_Check(x) (Py_TYPE(x) == &PyBool_Type)
23 #define Py_False ((PyObject *) &_Py_ZeroStruct)
24 #define Py_True ((PyObject *) &_Py_TrueStruct)
27 #define Py_RETURN_TRUE return Py_INCREF(Py_True), Py_True
28 #define Py_RETURN_FALSE return Py_INCREF(Py_False), Py_False
Copyright 2014 Google Inc. All rights reserved.