-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
gh-139852: Add PyObject_GetDictPtr() function #139854
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The job fails with:
I don't understand this error. Let me try to close/reopen the PR to try to repair the CI. |
I added the |
Can those users switch to |
It seems like SWIG generates code which writes into the #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
PyObject **dictptr = _PyObject_GetDictPtr(inst);
if (dictptr != NULL) {
PyObject *dict = *dictptr;
if (dict == NULL) {
dict = PyDict_New();
*dictptr = dict;
}
if (dict) {
PyDict_SetItem(dict, SWIG_This(), swig_this);
} else{
Py_DECREF(inst);
inst = 0;
}
}
#else
if (PyObject_SetAttr(inst, SWIG_This(), swig_this) == -1) {
Py_DECREF(inst);
inst = 0;
}
#endif pybind11 also writes into the PyObject **dict_ptr = _PyObject_GetDictPtr(self);
if (dict_ptr) {
Py_CLEAR(*dict_ptr);
} Obviously, there are other usages which only read the dictionary. Example from pybind11: PyObject *&dict = *_PyObject_GetDictPtr(self);
Py_VISIT(dict); |
That comes up because of the |
* so it should be treated as part of the public API. | ||
*/ | ||
PyObject ** | ||
_PyObject_GetDictPtr(PyObject *obj) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be deprecated?
I don't think Swig uses that code path for Python 3: |
Making this API a public function seems to be a bad idea: #139852 (comment). I prefer to close this PR for now. I proposed #139968 to add |
📚 Documentation preview 📚: https://cpython-previews--139854.org.readthedocs.build/