diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-06-01 03:53:03 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-06-01 03:53:03 (GMT) |
commit | cb314333fda707fd88428aa5019f89230beb1f45 (patch) | |
tree | 73e7671ef9fd6d3189014e058e549aad9e31cffc /Include/dictobject.h | |
parent | 9e670c216164bd9e437ffefeba31fb0a7865b932 (diff) | |
download | cpython-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.h | 1 |
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); |