[Python-checkins] r83007 - python/branches/release27-maint/Modules/zipimport.c

brian.curtin python-checkins at python.org
Wed Jul 21 03:35:46 CEST 2010


Author: brian.curtin
Date: Wed Jul 21 03:35:46 2010
New Revision: 83007

Log:
Fix #9316. if/is grammar corrections.


Modified:
   python/branches/release27-maint/Modules/zipimport.c

Modified: python/branches/release27-maint/Modules/zipimport.c
==============================================================================
--- python/branches/release27-maint/Modules/zipimport.c	(original)
+++ python/branches/release27-maint/Modules/zipimport.c	Wed Jul 21 03:35:46 2010
@@ -536,19 +536,19 @@
 "is_package(fullname) -> bool.\n\
 \n\
 Return True if the module specified by fullname is a package.\n\
-Raise ZipImportError is the module couldn't be found.");
+Raise ZipImportError if the module couldn't be found.");
 
 PyDoc_STRVAR(doc_get_code,
 "get_code(fullname) -> code object.\n\
 \n\
 Return the code object for the specified module. Raise ZipImportError\n\
-is the module couldn't be found.");
+if the module couldn't be found.");
 
 PyDoc_STRVAR(doc_get_source,
 "get_source(fullname) -> source string.\n\
 \n\
 Return the source code for the specified module. Raise ZipImportError\n\
-is the module couldn't be found, return None if the archive does\n\
+if the module couldn't be found, return None if the archive does\n\
 contain the module, but has no source for it.");
 
 


More information about the Python-checkins mailing list