mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Added missing prototype for PyDict_GetItemWithError().
This commit is contained in:
parent
9e670c2161
commit
cb314333fd
1 changed files with 1 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue