Add some spaces around the "=" in assignments.
diff --git a/Python/import.c b/Python/import.c
index 3b63167..ef13c58 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -1943,9 +1943,9 @@
 
 	/* 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;