Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[C API] Deprecate calling PyObject_SetAttr(obj, attr, NULL) with an exception set #135075

Closed
Labels
@vstinner

Description

@vstinner

The issuegh-106572 changedPyObject_DelAttr() andPyObject_DelAttrString() implementation from a macro to a function (commit1f2921b).

Now I propose deprecating callsPyObject_SetAttr(obj, attr, NULL) andPyObject_SetAttrString(obj, attr, NULL)with an exception set to help detecting bugs. When the code creating the attribute value failed, it should be handled before callingPyObject_SetAttr[String)() toavoid deleting the attribute by mistake.

The change affects also the stable ABI.

I also propose to treat this deprecation as an error in Python 3.17.

Example of buggy code:

PyObject *module = PyUnicode_FromString(module_name);int res = PyObject_SetAttrString(ns, "__module__", module);Py_DECREF(module);

Correct code:

PyObject *module = PyUnicode_FromString(module_name);if (module == NULL) { // <=== CHECK VALUE ===    goto error;}int res = PyObject_SetAttrString(ns, "__module__", module);Py_DECREF(module);

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp