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.

Author Retro
Recipients Retro, georg.brandl
Date 2009-11-18.19:12:34
SpamBayes Score 4.831903e-07
Marked as misclassified No
Message-id <[email protected]>
In-reply-to
Content
There are some minor typos in the docs. The section zipfile has twp typos:

exception zipfile.BadZipfile
    The error raised for bad ZIP files (old name: zipfile.error).

this should be

exception zipfile.BadZipFile
    The error raised for bad ZIP files (old name: zipfile.error).

Note: There needs to be a capital F in the exception class name BadZipFile.


There's also a typo in the sentence "Decryption is extremely slow as it
is implemented in native python rather than C." which should be
"Decryption is extremely slow as it is implemented in native Python
rather than C." This sentence is found just above the previous
BadZipfile typo.

Note: The word 'python' is needed to be capitalized.


These typos exist since the creation of the zipfile docs. Please correct
the docs for the selected versions. Thank you.
History
Date User Action Args
2009-11-18 19:12:36Retrosetrecipients: + Retro, georg.brandl
2009-11-18 19:12:35Retrosetmessageid: <[email protected]>
2009-11-18 19:12:34Retrolinkissue7351 messages
2009-11-18 19:12:34Retrocreate