-
-
Notifications
You must be signed in to change notification settings - Fork 32k
gh-112716: Fix SystemError when __builtins__ is not a dict #112770
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Fix SystemError in the ``import`` statement and in ``__reduce__()`` methods | ||
of builtin types when ``__builtins__`` is not a dict. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2415,7 +2415,7 @@ PyObject * | |
_PyEval_GetBuiltin(PyObject *name) | ||
{ | ||
PyObject *attr; | ||
if (PyDict_GetItemRef(PyEval_GetBuiltins(), name, &attr) == 0) { | ||
if (PyMapping_GetOptionalItem(PyEval_GetBuiltins(), name, &attr) == 0) { | ||
PyErr_SetObject(PyExc_AttributeError, name); | ||
} | ||
return attr; | ||
|
@@ -2568,7 +2568,7 @@ import_name(PyThreadState *tstate, _PyInterpreterFrame *frame, | |
PyObject *name, PyObject *fromlist, PyObject *level) | ||
{ | ||
PyObject *import_func; | ||
if (PyDict_GetItemRef(frame->f_builtins, &_Py_ID(__import__), &import_func) < 0) { | ||
if (PyMapping_GetOptionalItem(frame->f_builtins, &_Py_ID(__import__), &import_func) < 0) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it worth adding a fast path for the case where PyDict_CheckExact(builtins)? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Backports will be more complicated. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. PyMapping_GetOptionalItem() has a fast-path for PyDict_CheckExact(). IMO it's enough. |
||
return NULL; | ||
} | ||
if (import_func == NULL) { | ||
|
Uh oh!
There was an error while loading. Please reload this page.