summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-03-06 06:31:15 +0000
committerFred Drake <fdrake@acm.org>2001-03-06 06:31:15 +0000
commit0b783dc352b5da23becba0954ec217df73269454 (patch)
tree039c4b03e55cdc263e6ff982d0dab42d12a33e02 /Python
parent1ba852e7dca8c9b521f3e5e9d7535551bd113809 (diff)
downloadcpython-0b783dc352b5da23becba0954ec217df73269454.tar.gz
Add some spaces around the "=" in assignments.
Diffstat (limited to 'Python')
-rw-r--r--Python/import.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/import.c b/Python/import.c
index 3b63167d5f..ef13c58e9b 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;