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: Bad links in doc of zipfile.open
Type: Stage:
Components: Documentation Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, eric.araujo, georg.brandl
Priority: normal Keywords:

Created on 2010-11-29 23:08 by eric.araujo, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg122871 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-11-29 23:08
There is this note in the doc of zipfile.open:

“The file-like object [ZipExtFile, internal class] is read-only and provides the following methods: read(), readline(), readlines(), __iter__(), __next__().”

The :meth: construct gives interesting results here: link to zipfile.ZipFile.read (wrong), link to readline module (what?), no link, link to object.__iter__ (not bad), no link.
msg122892 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-11-30 07:56
Fixed in 86881.
History
Date User Action Args
2022-04-11 14:57:09adminsetgithub: 54793
2010-11-30 07:56:17georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg122892

resolution: fixed
2010-11-29 23:08:02eric.araujocreate