From 74780961483ef3ec92b8a8ea4c1cf46125e75a4d Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 10 Mar 2007 07:38:14 +0000 Subject: Typos. --- Modules/getpath.c | 2 +- Python/import.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/getpath.c b/Modules/getpath.c index 78bfaf9..09fbe10 100644 --- a/Modules/getpath.c +++ b/Modules/getpath.c @@ -26,7 +26,7 @@ * as best as is possible, but most imports will fail. * * Before any searches are done, the location of the executable is - * determined. If argv[0] has one or more slashs in it, it is used + * determined. If argv[0] has one or more slashes in it, it is used * unchanged. Otherwise, it must have been invoked from the shell's path, * so we search $PATH for the named executable and use that. If the * executable was not found on $PATH (or there was no $PATH environment 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); -- cgit v0.12