mirror of https://github.com/python/cpython
bpo-22039: [doc] clarify that there are no plans to disable deleting an attribute via PyObject_SetAttr (GH-30639)
This commit is contained in:
parent
a847785b40
commit
3bf6315c4c
|
@ -81,8 +81,9 @@ Object Protocol
|
||||||
return ``0`` on success. This is the equivalent of the Python statement
|
return ``0`` on success. This is the equivalent of the Python statement
|
||||||
``o.attr_name = v``.
|
``o.attr_name = v``.
|
||||||
|
|
||||||
If *v* is ``NULL``, the attribute is deleted, however this feature is
|
If *v* is ``NULL``, the attribute is deleted. This behaviour is deprecated
|
||||||
deprecated in favour of using :c:func:`PyObject_DelAttr`.
|
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)
|
.. c:function:: int PyObject_SetAttrString(PyObject *o, const char *attr_name, PyObject *v)
|
||||||
|
|
Loading…
Reference in New Issue