Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a76ba6e

Browse files
committed
Add some spaces around the "=" in assignments.
1 parent a1a84e7 commit a76ba6e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Python/import.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1943,9 +1943,9 @@ PyImport_Import(PyObject *module_name)
19431943

19441944
/* Get the __import__ function from the builtins */
19451945
if (PyDict_Check(builtins))
1946-
import=PyObject_GetItem(builtins, import_str);
1946+
import = PyObject_GetItem(builtins, import_str);
19471947
else
1948-
import=PyObject_GetAttr(builtins, import_str);
1948+
import = PyObject_GetAttr(builtins, import_str);
19491949
if (import == NULL)
19501950
goto err;
19511951

0 commit comments

Comments
 (0)