[Python-checkins] r54257 - in python/trunk: Modules/getpath.c Python/import.c

georg.brandl python-checkins at python.org
Sat Mar 10 08:38:18 CET 2007


Author: georg.brandl
Date: Sat Mar 10 08:38:14 2007
New Revision: 54257

Modified:
   python/trunk/Modules/getpath.c
   python/trunk/Python/import.c
Log:
Typos.


Modified: python/trunk/Modules/getpath.c
==============================================================================
--- python/trunk/Modules/getpath.c	(original)
+++ python/trunk/Modules/getpath.c	Sat Mar 10 08:38:14 2007
@@ -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

Modified: python/trunk/Python/import.c
==============================================================================
--- python/trunk/Python/import.c	(original)
+++ python/trunk/Python/import.c	Sat Mar 10 08:38:14 2007
@@ -2536,7 +2536,7 @@
 	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);
 


More information about the Python-checkins mailing list