Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/python2....
File: boolobject.h
/* Boolean object interface */
[0] Fix | Delete
[1] Fix | Delete
#ifndef Py_BOOLOBJECT_H
[2] Fix | Delete
#define Py_BOOLOBJECT_H
[3] Fix | Delete
#ifdef __cplusplus
[4] Fix | Delete
extern "C" {
[5] Fix | Delete
#endif
[6] Fix | Delete
[7] Fix | Delete
[8] Fix | Delete
typedef PyIntObject PyBoolObject;
[9] Fix | Delete
[10] Fix | Delete
PyAPI_DATA(PyTypeObject) PyBool_Type;
[11] Fix | Delete
[12] Fix | Delete
#define PyBool_Check(x) (Py_TYPE(x) == &PyBool_Type)
[13] Fix | Delete
[14] Fix | Delete
/* Py_False and Py_True are the only two bools in existence.
[15] Fix | Delete
Don't forget to apply Py_INCREF() when returning either!!! */
[16] Fix | Delete
[17] Fix | Delete
/* Don't use these directly */
[18] Fix | Delete
PyAPI_DATA(PyIntObject) _Py_ZeroStruct, _Py_TrueStruct;
[19] Fix | Delete
[20] Fix | Delete
/* Use these macros */
[21] Fix | Delete
#define Py_False ((PyObject *) &_Py_ZeroStruct)
[22] Fix | Delete
#define Py_True ((PyObject *) &_Py_TrueStruct)
[23] Fix | Delete
[24] Fix | Delete
/* Macros for returning Py_True or Py_False, respectively */
[25] Fix | Delete
#define Py_RETURN_TRUE return Py_INCREF(Py_True), Py_True
[26] Fix | Delete
#define Py_RETURN_FALSE return Py_INCREF(Py_False), Py_False
[27] Fix | Delete
[28] Fix | Delete
/* Function to return a bool from a C long */
[29] Fix | Delete
PyAPI_FUNC(PyObject *) PyBool_FromLong(long);
[30] Fix | Delete
[31] Fix | Delete
#ifdef __cplusplus
[32] Fix | Delete
}
[33] Fix | Delete
#endif
[34] Fix | Delete
#endif /* !Py_BOOLOBJECT_H */
[35] Fix | Delete
[36] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function