8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87ee760 commit 8ade153Copy full SHA for 8ade153
Doc/c-api/object.rst
@@ -493,6 +493,13 @@ Object Protocol
493
on failure. This is equivalent to the Python statement ``del o[key]``.
494
495
496
+.. c:function:: int PyObject_DelItemString(PyObject *o, const char *key)
497
+
498
+ This is the same as :c:func:`PyObject_DelItem`, but *key* is
499
+ specified as a :c:expr:`const ch 7090 ar*` UTF-8 encoded bytes string,
500
+ rather than a :c:expr:`PyObject*`.
501
502
503
.. c:function:: PyObject* PyObject_Dir(PyObject *o)
504
505
This is equivalent to the Python expression ``dir(o)``, returning a (possibly
0 commit comments