]> granicus.if.org Git - python/commitdiff
Typos.
authorGeorg Brandl <georg@python.org>
Sat, 10 Mar 2007 07:38:14 +0000 (07:38 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 10 Mar 2007 07:38:14 +0000 (07:38 +0000)
Modules/getpath.c
Python/import.c

index 78bfaf97658716704b258faa16f306791614c963..09fbe1017b18742def1ca40561e1e44df7d88ad6 100644 (file)
@@ -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
index 45c5507aa9f79b53b9b9dc1c4c85655286715d77..db39cc4ee0a71304512d681529b963d20c8f9b86 100644 (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);