Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1a84e7 commit a76ba6eCopy full SHA for a76ba6e
1 file changed
Python/import.c
@@ -1943,9 +1943,9 @@ PyImport_Import(PyObject *module_name)
1943
1944
/* Get the __import__ function from the builtins */
1945
if (PyDict_Check(builtins))
1946
- import=PyObject_GetItem(builtins, import_str);
+ import = PyObject_GetItem(builtins, import_str);
1947
else
1948
- import=PyObject_GetAttr(builtins, import_str);
+ import = PyObject_GetAttr(builtins, import_str);
1949
if (import == NULL)
1950
goto err;
1951
0 commit comments