Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/python3....
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
PyAPI_DATA(PyTypeObject) PyBool_Type;
[9] Fix | Delete
[10] Fix | Delete
#define PyBool_Check(x) (Py_TYPE(x) == &PyBool_Type)
[11] Fix | Delete
[12] Fix | Delete
/* Py_False and Py_True are the only two bools in existence.
[13] Fix | Delete
Don't forget to apply Py_INCREF() when returning either!!! */
[14] Fix | Delete
[15] Fix | Delete
/* Don't use these directly */
[16] Fix | Delete
PyAPI_DATA(struct _longobject) _Py_FalseStruct, _Py_TrueStruct;
[17] Fix | Delete
[18] Fix | Delete
/* Use these macros */
[19] Fix | Delete
#define Py_False ((PyObject *) &_Py_FalseStruct)
[20] Fix | Delete
#define Py_True ((PyObject *) &_Py_TrueStruct)
[21] Fix | Delete
[22] Fix | Delete
/* Macros for returning Py_True or Py_False, respectively */
[23] Fix | Delete
#define Py_RETURN_TRUE return Py_INCREF(Py_True), Py_True
[24] Fix | Delete
#define Py_RETURN_FALSE return Py_INCREF(Py_False), Py_False
[25] Fix | Delete
[26] Fix | Delete
/* Function to return a bool from a C long */
[27] Fix | Delete
PyAPI_FUNC(PyObject *) PyBool_FromLong(long);
[28] Fix | Delete
[29] Fix | Delete
#ifdef __cplusplus
[30] Fix | Delete
}
[31] Fix | Delete
#endif
[32] Fix | Delete
#endif /* !Py_BOOLOBJECT_H */
[33] Fix | Delete
[34] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function