mirror of
https://github.com/python/cpython.git
synced 2025-09-09 18:32:22 +00:00
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
sys.modules is the one true source.
This commit is contained in:
parent
f5ea83f486
commit
86b7afdfee
18 changed files with 261 additions and 111 deletions
|
@ -44,7 +44,6 @@ static PyObject *
|
|||
get_warnings_attr(const char *attr, int try_import)
|
||||
{
|
||||
static PyObject *warnings_str = NULL;
|
||||
PyObject *all_modules;
|
||||
PyObject *warnings_module, *obj;
|
||||
|
||||
if (warnings_str == NULL) {
|
||||
|
@ -64,9 +63,7 @@ get_warnings_attr(const char *attr, int try_import)
|
|||
}
|
||||
}
|
||||
else {
|
||||
all_modules = PyImport_GetModuleDict();
|
||||
|
||||
warnings_module = PyDict_GetItem(all_modules, warnings_str);
|
||||
warnings_module = _PyImport_GetModule(warnings_str);
|
||||
if (warnings_module == NULL)
|
||||
return NULL;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue