summaryrefslogtreecommitdiffstats
path: root/Python/import.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-10 07:38:14 (GMT)
committerGeorg Brandl <georg@python.org>2007-03-10 07:38:14 (GMT)
commit74780961483ef3ec92b8a8ea4c1cf46125e75a4d (patch)
tree5263789ee92594a2920598472942c1be77ebac49 /Python/import.c
parentfaaa2041294c283974a28b4ebf81b58f020f3e06 (diff)
downloadcpython-74780961483ef3ec92b8a8ea4c1cf46125e75a4d.zip
cpython-74780961483ef3ec92b8a8ea4c1cf46125e75a4d.tar.gz
cpython-74780961483ef3ec92b8a8ea4c1cf46125e75a4d.tar.bz2
Typos.
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index 45c5507..db39cc4 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -2536,7 +2536,7 @@ PyImport_Import(PyObject *module_name)
if (import == NULL)
goto err;
- /* Call the _import__ function with the proper argument list */
+ /* Call the __import__ function with the proper argument list */
r = PyObject_CallFunctionObjArgs(import, module_name, globals,
globals, silly_list, NULL);