Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/python3....
File: odictobject.h
#ifndef Py_ODICTOBJECT_H
[0] Fix | Delete
#define Py_ODICTOBJECT_H
[1] Fix | Delete
#ifdef __cplusplus
[2] Fix | Delete
extern "C" {
[3] Fix | Delete
#endif
[4] Fix | Delete
[5] Fix | Delete
[6] Fix | Delete
/* OrderedDict */
[7] Fix | Delete
/* This API is optional and mostly redundant. */
[8] Fix | Delete
[9] Fix | Delete
#ifndef Py_LIMITED_API
[10] Fix | Delete
[11] Fix | Delete
typedef struct _odictobject PyODictObject;
[12] Fix | Delete
[13] Fix | Delete
PyAPI_DATA(PyTypeObject) PyODict_Type;
[14] Fix | Delete
PyAPI_DATA(PyTypeObject) PyODictIter_Type;
[15] Fix | Delete
PyAPI_DATA(PyTypeObject) PyODictKeys_Type;
[16] Fix | Delete
PyAPI_DATA(PyTypeObject) PyODictItems_Type;
[17] Fix | Delete
PyAPI_DATA(PyTypeObject) PyODictValues_Type;
[18] Fix | Delete
[19] Fix | Delete
#define PyODict_Check(op) PyObject_TypeCheck(op, &PyODict_Type)
[20] Fix | Delete
#define PyODict_CheckExact(op) (Py_TYPE(op) == &PyODict_Type)
[21] Fix | Delete
#define PyODict_SIZE(op) ((PyDictObject *)op)->ma_used
[22] Fix | Delete
[23] Fix | Delete
PyAPI_FUNC(PyObject *) PyODict_New(void);
[24] Fix | Delete
PyAPI_FUNC(int) PyODict_SetItem(PyObject *od, PyObject *key, PyObject *item);
[25] Fix | Delete
PyAPI_FUNC(int) PyODict_DelItem(PyObject *od, PyObject *key);
[26] Fix | Delete
[27] Fix | Delete
/* wrappers around PyDict* functions */
[28] Fix | Delete
#define PyODict_GetItem(od, key) PyDict_GetItem((PyObject *)od, key)
[29] Fix | Delete
#define PyODict_GetItemWithError(od, key) \
[30] Fix | Delete
PyDict_GetItemWithError((PyObject *)od, key)
[31] Fix | Delete
#define PyODict_Contains(od, key) PyDict_Contains((PyObject *)od, key)
[32] Fix | Delete
#define PyODict_Size(od) PyDict_Size((PyObject *)od)
[33] Fix | Delete
#define PyODict_GetItemString(od, key) \
[34] Fix | Delete
PyDict_GetItemString((PyObject *)od, key)
[35] Fix | Delete
[36] Fix | Delete
#endif
[37] Fix | Delete
[38] Fix | Delete
#ifdef __cplusplus
[39] Fix | Delete
}
[40] Fix | Delete
#endif
[41] Fix | Delete
#endif /* !Py_ODICTOBJECT_H */
[42] Fix | Delete
[43] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function