Skip to content

Commit

Permalink
bpo-22039: [doc] clarify that there are no plans to disable deleting …
Browse files Browse the repository at this point in the history
…an attribute via PyObject_SetAttr (GH-30639)
  • Loading branch information
iritkatriel committed Jan 19, 2022
1 parent a847785 commit 3bf6315
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Doc/c-api/object.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,9 @@ Object Protocol
return ``0`` on success. This is the equivalent of the Python statement
``o.attr_name = v``.
If *v* is ``NULL``, the attribute is deleted, however this feature is
deprecated in favour of using :c:func:`PyObject_DelAttr`.
If *v* is ``NULL``, the attribute is deleted. This behaviour is deprecated
in favour of using :c:func:`PyObject_DelAttr`, but there are currently no
plans to remove it.
.. c:function:: int PyObject_SetAttrString(PyObject *o, const char *attr_name, PyObject *v)
Expand Down

0 comments on commit 3bf6315

Please sign in to comment.