Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/python3....
File: classobject.h
/* Former class object interface -- now only bound methods are here */
[0] Fix | Delete
[1] Fix | Delete
/* Revealing some structures (not for general use) */
[2] Fix | Delete
[3] Fix | Delete
#ifndef Py_LIMITED_API
[4] Fix | Delete
#ifndef Py_CLASSOBJECT_H
[5] Fix | Delete
#define Py_CLASSOBJECT_H
[6] Fix | Delete
#ifdef __cplusplus
[7] Fix | Delete
extern "C" {
[8] Fix | Delete
#endif
[9] Fix | Delete
[10] Fix | Delete
typedef struct {
[11] Fix | Delete
PyObject_HEAD
[12] Fix | Delete
PyObject *im_func; /* The callable object implementing the method */
[13] Fix | Delete
PyObject *im_self; /* The instance it is bound to */
[14] Fix | Delete
PyObject *im_weakreflist; /* List of weak references */
[15] Fix | Delete
} PyMethodObject;
[16] Fix | Delete
[17] Fix | Delete
PyAPI_DATA(PyTypeObject) PyMethod_Type;
[18] Fix | Delete
[19] Fix | Delete
#define PyMethod_Check(op) ((op)->ob_type == &PyMethod_Type)
[20] Fix | Delete
[21] Fix | Delete
PyAPI_FUNC(PyObject *) PyMethod_New(PyObject *, PyObject *);
[22] Fix | Delete
[23] Fix | Delete
PyAPI_FUNC(PyObject *) PyMethod_Function(PyObject *);
[24] Fix | Delete
PyAPI_FUNC(PyObject *) PyMethod_Self(PyObject *);
[25] Fix | Delete
[26] Fix | Delete
/* Macros for direct access to these values. Type checks are *not*
[27] Fix | Delete
done, so use with care. */
[28] Fix | Delete
#define PyMethod_GET_FUNCTION(meth) \
[29] Fix | Delete
(((PyMethodObject *)meth) -> im_func)
[30] Fix | Delete
#define PyMethod_GET_SELF(meth) \
[31] Fix | Delete
(((PyMethodObject *)meth) -> im_self)
[32] Fix | Delete
[33] Fix | Delete
PyAPI_FUNC(int) PyMethod_ClearFreeList(void);
[34] Fix | Delete
[35] Fix | Delete
typedef struct {
[36] Fix | Delete
PyObject_HEAD
[37] Fix | Delete
PyObject *func;
[38] Fix | Delete
} PyInstanceMethodObject;
[39] Fix | Delete
[40] Fix | Delete
PyAPI_DATA(PyTypeObject) PyInstanceMethod_Type;
[41] Fix | Delete
[42] Fix | Delete
#define PyInstanceMethod_Check(op) ((op)->ob_type == &PyInstanceMethod_Type)
[43] Fix | Delete
[44] Fix | Delete
PyAPI_FUNC(PyObject *) PyInstanceMethod_New(PyObject *);
[45] Fix | Delete
PyAPI_FUNC(PyObject *) PyInstanceMethod_Function(PyObject *);
[46] Fix | Delete
[47] Fix | Delete
/* Macros for direct access to these values. Type checks are *not*
[48] Fix | Delete
done, so use with care. */
[49] Fix | Delete
#define PyInstanceMethod_GET_FUNCTION(meth) \
[50] Fix | Delete
(((PyInstanceMethodObject *)meth) -> func)
[51] Fix | Delete
[52] Fix | Delete
#ifdef __cplusplus
[53] Fix | Delete
}
[54] Fix | Delete
#endif
[55] Fix | Delete
#endif /* !Py_CLASSOBJECT_H */
[56] Fix | Delete
#endif /* Py_LIMITED_API */
[57] Fix | Delete
[58] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function