We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62b4ca0 commit 5ed2b76Copy full SHA for 5ed2b76
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 char*` 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