This commit is contained in:
Georg Brandl 2007-03-10 07:38:14 +00:00
parent faaa204129
commit 7478096148
2 changed files with 2 additions and 2 deletions

View file

@ -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);