diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-11 09:38:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 09:38:22 (GMT) |
commit | 1f2921b72c369b19c2e32aaedb9f8c63e0cb8b48 (patch) | |
tree | 36a45c5f49093ad3a7947593f2d35901c021f3cb /Python/bltinmodule.c | |
parent | e6379f72cbc60f6b3c5676f9e225d4f145d5693f (diff) | |
download | cpython-1f2921b72c369b19c2e32aaedb9f8c63e0cb8b48.zip cpython-1f2921b72c369b19c2e32aaedb9f8c63e0cb8b48.tar.gz cpython-1f2921b72c369b19c2e32aaedb9f8c63e0cb8b48.tar.bz2 |
gh-106572: Convert PyObject_DelAttr() to a function (#106611)
* Convert PyObject_DelAttr() and PyObject_DelAttrString() macros to
functions.
* Add PyObject_DelAttr() and PyObject_DelAttrString() functions to
the stable ABI.
* Replace PyObject_SetAttr(obj, name, NULL) with
PyObject_DelAttr(obj, name).
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r-- | Python/bltinmodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 49efafc..20a86fc 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -1567,8 +1567,9 @@ static PyObject * builtin_delattr_impl(PyObject *module, PyObject *obj, PyObject *name) /*[clinic end generated code: output=85134bc58dff79fa input=164865623abe7216]*/ { - if (PyObject_SetAttr(obj, name, (PyObject *)NULL) != 0) + if (PyObject_DelAttr(obj, name) < 0) { return NULL; + } Py_RETURN_NONE; } |