Commit 32839739 authored by Brian Curtin's avatar Brian Curtin

Fix #9316. if/is grammar corrections.

parent 20f9c3c5
...@@ -523,19 +523,19 @@ PyDoc_STRVAR(doc_is_package, ...@@ -523,19 +523,19 @@ PyDoc_STRVAR(doc_is_package,
"is_package(fullname) -> bool.\n\ "is_package(fullname) -> bool.\n\
\n\ \n\
Return True if the module specified by fullname is a package.\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, PyDoc_STRVAR(doc_get_code,
"get_code(fullname) -> code object.\n\ "get_code(fullname) -> code object.\n\
\n\ \n\
Return the code object for the specified module. Raise ZipImportError\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, PyDoc_STRVAR(doc_get_source,
"get_source(fullname) -> source string.\n\ "get_source(fullname) -> source string.\n\
\n\ \n\
Return the source code for the specified module. Raise ZipImportError\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."); contain the module, but has no source for it.");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment