Commit d0a06455 authored by Eric Snow's avatar Eric Snow

Issue #16991: Drop Py_ODict_GetItemId.

parent 82a94186
...@@ -34,7 +34,6 @@ PyAPI_FUNC(int) PyODict_DelItem(PyObject *od, PyObject *key); ...@@ -34,7 +34,6 @@ PyAPI_FUNC(int) PyODict_DelItem(PyObject *od, PyObject *key);
#define PyODict_Size(od) PyDict_Size((PyObject *)od) #define PyODict_Size(od) PyDict_Size((PyObject *)od)
#define PyODict_GetItemString(od, key) \ #define PyODict_GetItemString(od, key) \
PyDict_GetItemString((PyObject *)od, key) PyDict_GetItemString((PyObject *)od, key)
#define Py_ODict_GetItemId(od, key) _PyDict_GetItemId((PyObject *)od, key)
#ifdef __cplusplus #ifdef __cplusplus
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment