mirror of
https://github.com/python/cpython.git
synced 2025-10-21 14:12:27 +00:00
Add some spaces around the "=" in assignments.
This commit is contained in:
parent
a1a84e7d4f
commit
a76ba6ed9b
1 changed files with 2 additions and 2 deletions
|
@ -1943,9 +1943,9 @@ PyImport_Import(PyObject *module_name)
|
|||
|
||||
/* Get the __import__ function from the builtins */
|
||||
if (PyDict_Check(builtins))
|
||||
import=PyObject_GetItem(builtins, import_str);
|
||||
import = PyObject_GetItem(builtins, import_str);
|
||||
else
|
||||
import=PyObject_GetAttr(builtins, import_str);
|
||||
import = PyObject_GetAttr(builtins, import_str);
|
||||
if (import == NULL)
|
||||
goto err;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue