This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: typos in zipimport docstrings
Type: behavior Stage: resolved
Components: Documentation, Extension Modules Versions: Python 3.1, Python 3.2, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: brian.curtin Nosy List: brian.curtin, rfk
Priority: normal Keywords: patch

Created on 2010-07-21 00:42 by rfk, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
zipimport_docstring_typo.patch rfk, 2010-07-21 00:42
Messages (2)
msg110983 - (view) Author: Ryan Kelly (rfk) Date: 2010-07-21 00:42
zipimporter methods is_package, get_code and get_source have in the their docstring "Raise ZipImportError is the module couldn't be found".

The attached patch fixes the typo to "if the module couldn't be found".
msg110989 - (view) Author: Brian Curtin (brian.curtin) * (Python committer) Date: 2010-07-21 01:49
Thanks for the patch. Fixed in r83007 through r83010.
History
Date User Action Args
2022-04-11 14:57:04adminsetgithub: 53562
2010-07-21 01:49:21brian.curtinsetstatus: open -> closed

resolution: fixed

assignee: brian.curtin
stage: resolved
versions: + Python 2.6, Python 3.1, Python 2.7, Python 3.2
nosy: + brian.curtin
messages: + msg110989
components: + Documentation, Extension Modules
type: behavior
2010-07-21 00:42:40rfkcreate