From: Eric Snow Date: Sat, 30 May 2015 18:06:03 +0000 (-0600) Subject: Issue #16991: Drop Py_ODict_GetItemId. X-Git-Tag: v3.5.0b2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0a06455a5a56c637ccf582d99e499d45091cdbd;p=python Issue #16991: Drop Py_ODict_GetItemId. --- diff --git a/Include/odictobject.h b/Include/odictobject.h index 1d0d235ef5..7930d2876d 100644 --- a/Include/odictobject.h +++ b/Include/odictobject.h @@ -34,7 +34,6 @@ PyAPI_FUNC(int) PyODict_DelItem(PyObject *od, PyObject *key); #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 }