projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1a84e7
)
Add some spaces around the "=" in assignments.
author
Fred Drake
<fdrake@acm.org>
Tue, 6 Mar 2001 06:31:15 +0000
(06:31 +0000)
committer
Fred Drake
<fdrake@acm.org>
Tue, 6 Mar 2001 06:31:15 +0000
(06:31 +0000)
Python/import.c
patch
|
blob
|
history
diff --git
a/Python/import.c
b/Python/import.c
index 3b63167d5f449c1645bdad58fa0609019cd90ab5..ef13c58e9bf217b5a49f22b107aabc5bb3dba5e5 100644
(file)
--- 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;