summaryrefslogtreecommitdiffstats
path: root/Include/dictobject.h
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-06-01 03:53:03 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-06-01 03:53:03 (GMT)
commitcb314333fda707fd88428aa5019f89230beb1f45 (patch)
tree73e7671ef9fd6d3189014e058e549aad9e31cffc /Include/dictobject.h
parent9e670c216164bd9e437ffefeba31fb0a7865b932 (diff)
downloadcpython-cb314333fda707fd88428aa5019f89230beb1f45.zip
cpython-cb314333fda707fd88428aa5019f89230beb1f45.tar.gz
cpython-cb314333fda707fd88428aa5019f89230beb1f45.tar.bz2
Added missing prototype for PyDict_GetItemWithError().
Diffstat (limited to 'Include/dictobject.h')
-rw-r--r--Include/dictobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h
index 76fc75b..3d9d5e1 100644
--- a/Include/dictobject.h
+++ b/Include/dictobject.h
@@ -109,6 +109,7 @@ PyAPI_DATA(PyTypeObject) PyDictValues_Type;
PyAPI_FUNC(PyObject *) PyDict_New(void);
PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);
+PyAPI_FUNC(PyObject *) PyDict_GetItemWithError(PyObject *mp, PyObject *key);
PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item);
PyAPI_FUNC(int) PyDict_DelItem(PyObject *mp, PyObject *key);
PyAPI_FUNC(void) PyDict_Clear(PyObject *mp);