[Python-checkins] cpython (3.5): Issue #16991: Drop Py_ODict_GetItemId.

eric.snow python-checkins at python.org
Sat May 30 20:08:16 CEST 2015


https://hg.python.org/cpython/rev/7117e9b0f595
changeset:   96397:7117e9b0f595
branch:      3.5
parent:      96395:9d779c04b009
user:        Eric Snow <ericsnowcurrently at gmail.com>
date:        Sat May 30 12:06:03 2015 -0600
summary:
  Issue #16991: Drop Py_ODict_GetItemId.

files:
  Include/odictobject.h |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Include/odictobject.h b/Include/odictobject.h
--- a/Include/odictobject.h
+++ b/Include/odictobject.h
@@ -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
 }

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list