From a76ba6ed9b1dcaa66daee71961e0d528d64b07f0 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 6 Mar 2001 06:31:15 +0000 Subject: [PATCH] Add some spaces around the "=" in assignments. --- Python/import.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/import.c b/Python/import.c index 3b63167d5f4..ef13c58e9bf 100644 --- a/Python/import.c +++ b/Python/import.c @@ -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;