Lines Matching refs:od
26 PyAPI_FUNC(int) PyODict_SetItem(PyObject *od, PyObject *key, PyObject *item);
27 PyAPI_FUNC(int) PyODict_DelItem(PyObject *od, PyObject *key);
30 #define PyODict_GetItem(od, key) PyDict_GetItem(_PyObject_CAST(od), key)
31 #define PyODict_GetItemWithError(od, key) \
32 PyDict_GetItemWithError(_PyObject_CAST(od), key)
33 #define PyODict_Contains(od, key) PyDict_Contains(_PyObject_CAST(od), key)
34 #define PyODict_Size(od) PyDict_Size(_PyObject_CAST(od))
35 #define PyODict_GetItemString(od, key) \
36 PyDict_GetItemString(_PyObject_CAST(od), key)