mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +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
|
@ -174,6 +174,24 @@ PyObject_DelItem(PyObject *o, PyObject *key)
|
|||
return -1;
|
||||
}
|
||||
|
||||
int
|
||||
PyObject_DelItemString(PyObject *o, char *key)
|
||||
{
|
||||
PyObject *okey;
|
||||
int ret;
|
||||
|
||||
if (o == NULL || key == NULL) {
|
||||
null_error();
|
||||
return -1;
|
||||
}
|
||||
okey = PyString_FromString(key);
|
||||
if (okey == NULL)
|
||||
return -1;
|
||||
ret = PyObject_DelItem(o, okey);
|
||||
Py_DECREF(okey);
|
||||
return ret;
|
||||
}
|
||||
|
||||
int PyObject_AsCharBuffer(PyObject *obj,
|
||||
const char **buffer,
|
||||
int *buffer_len)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue