projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e670c2
)
Added missing prototype for PyDict_GetItemWithError().
author
Alexandre Vassalotti
<alexandre@peadrop.com>
Sun, 1 Jun 2008 03:53:03 +0000
(
03:53
+0000)
committer
Alexandre Vassalotti
<alexandre@peadrop.com>
Sun, 1 Jun 2008 03:53:03 +0000
(
03:53
+0000)
Include/dictobject.h
patch
|
blob
|
history
diff --git
a/Include/dictobject.h
b/Include/dictobject.h
index 76fc75b6bbda214b1d629ec53888fd2223b5e3b9..3d9d5e125615941fe7063962bc6c785acf938b18 100644
(file)
--- 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);