changeset: 96397:7117e9b0f595 branch: 3.5 parent: 96395:9d779c04b009 user: Eric Snow date: Sat May 30 12:06:03 2015 -0600 files: Include/odictobject.h description: Issue #16991: Drop Py_ODict_GetItemId. diff -r 9d779c04b009 -r 7117e9b0f595 Include/odictobject.h --- a/Include/odictobject.h Sat May 30 11:59:17 2015 -0600 +++ b/Include/odictobject.h Sat May 30 12:06:03 2015 -0600 @@ -34,7 +34,6 @@ #define PyODict_Size(od) PyDict_Size((PyObject *)od) #define PyODict_GetItemString(od, key) \ PyDict_GetItemString((PyObject *)od, key) -#define Py_ODict_GetItemId(od, key) _PyDict_GetItemId((PyObject *)od, key) #ifdef __cplusplus }