Skip to content

Commit

Permalink
Added missing prototype for PyDict_GetItemWithError().
Browse files Browse the repository at this point in the history
  • Loading branch information
avassalotti committed Jun 1, 2008
1 parent 9e670c2 commit cb31433
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Include/dictobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit cb31433

Please sign in to comment.