From: Fred Drake Date: Tue, 6 Mar 2001 06:31:15 +0000 (+0000) Subject: Add some spaces around the "=" in assignments. X-Git-Tag: v2.1b2~228 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a76ba6ed9b1dcaa66daee71961e0d528d64b07f0;p=thirdparty%2FPython%2Fcpython.git Add some spaces around the "=" in assignments. --- diff --git a/Python/import.c b/Python/import.c index 3b63167d5f44..ef13c58e9bf2 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;