diff options
| author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-06-01 03:53:03 +0000 |
|---|---|---|
| committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-06-01 03:53:03 +0000 |
| commit | cb314333fda707fd88428aa5019f89230beb1f45 (patch) | |
| tree | 73e7671ef9fd6d3189014e058e549aad9e31cffc /Include | |
| parent | 9e670c216164bd9e437ffefeba31fb0a7865b932 (diff) | |
| download | cpython-git-cb314333fda707fd88428aa5019f89230beb1f45.tar.gz | |
Added missing prototype for PyDict_GetItemWithError().
Diffstat (limited to 'Include')
| -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 76fc75b6bb..3d9d5e1256 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); |
