[WIP] bpo-39465: Mark _Py_Identifier.object as atomic by vstinner · Pull Request #20390 · python/cpython
PyObject *object; object = PyUnicode_DecodeUTF8Stateful(id->string, strlen(id->string), NULL, NULL); if (!object) { return NULL; }
PyUnicode_InternInPlace(&object); id->object = (_Atomic PyObject *)object; assert(!id->next); id->next = static_strings; static_strings = id; return object; }
static void