mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Implement PyObject_DelItemString. Fixes #498915.
This commit is contained in:
parent
7731ed47cb
commit
b0d71d0ec6
2 changed files with 26 additions and 0 deletions
|
@ -445,6 +445,14 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
|
|||
statement: o[key]=v.
|
||||
*/
|
||||
|
||||
DL_IMPORT(int) PyObject_DelItemString(PyObject *o, char *key);
|
||||
|
||||
/*
|
||||
Remove the mapping for object, key, from the object *o.
|
||||
Returns -1 on failure. This is equivalent to
|
||||
the Python statement: del o[key].
|
||||
*/
|
||||
|
||||
DL_IMPORT(int) PyObject_DelItem(PyObject *o, PyObject *key);
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue