summaryrefslogtreecommitdiffstats
path: root/Modules/zipimport.c
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-07-21 01:46:44 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2010-07-21 01:46:44 (GMT)
commit823de0028639ef94a58a0a8652e8e7e15eeee198 (patch)
treee7c4e442ec1b3fdfcaf03518e8d3681c4c6df13c /Modules/zipimport.c
parent13aeb3628eab5bbb02acdf86c1dd1a6e1ee840c7 (diff)
downloadcpython-823de0028639ef94a58a0a8652e8e7e15eeee198.zip
cpython-823de0028639ef94a58a0a8652e8e7e15eeee198.tar.gz
cpython-823de0028639ef94a58a0a8652e8e7e15eeee198.tar.bz2
Merged revisions 83009 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83009 | brian.curtin | 2010-07-20 20:44:19 -0500 (Tue, 20 Jul 2010) | 2 lines Fix #9316. if/is grammar corrections. ........
Diffstat (limited to 'Modules/zipimport.c')
-rw-r--r--Modules/zipimport.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/zipimport.c b/Modules/zipimport.c
index 734445c..8d04f17 100644
--- a/Modules/zipimport.c
+++ b/Modules/zipimport.c
@@ -523,19 +523,19 @@ PyDoc_STRVAR(doc_is_package,
"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.");