summaryrefslogtreecommitdiffstats
path: root/Include/odictobject.h
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2015-05-30 18:06:03 (GMT)
committerEric Snow <ericsnowcurrently@gmail.com>2015-05-30 18:06:03 (GMT)
commitd0a06455a5a56c637ccf582d99e499d45091cdbd (patch)
tree1839d1cf478797a9e635d72488108c12f7b55d0f /Include/odictobject.h
parent82a94186c892df91e54556d9d41573ab1bcc0620 (diff)
downloadcpython-d0a06455a5a56c637ccf582d99e499d45091cdbd.zip
cpython-d0a06455a5a56c637ccf582d99e499d45091cdbd.tar.gz
cpython-d0a06455a5a56c637ccf582d99e499d45091cdbd.tar.bz2
Issue #16991: Drop Py_ODict_GetItemId.
Diffstat (limited to 'Include/odictobject.h')
-rw-r--r--Include/odictobject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/odictobject.h b/Include/odictobject.h
index 1d0d235..7930d28 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
}