diff options
author | Fred Drake <fdrake@acm.org> | 2001-03-06 06:31:15 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-03-06 06:31:15 (GMT) |
commit | a76ba6ed9b1dcaa66daee71961e0d528d64b07f0 (patch) | |
tree | 59492082b69289f4d31856b684705d0cf25dcfb2 | |
parent | a1a84e7d4f7b493bb6fa5415ce55d3f722221470 (diff) | |
download | cpython-a76ba6ed9b1dcaa66daee71961e0d528d64b07f0.zip cpython-a76ba6ed9b1dcaa66daee71961e0d528d64b07f0.tar.gz cpython-a76ba6ed9b1dcaa66daee71961e0d528d64b07f0.tar.bz2 |
Add some spaces around the "=" in assignments.
-rw-r--r-- | Python/import.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ 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; |