[issue8886] zipfile.ZipExtFile is a context manager, but that is not documented

2016-05-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset ae50bf6e3ac8 by Serhiy Storchaka in branch '3.5': Restored test_interleaved. After issue #8886 it was a duplicate of https://hg.python.org/cpython/rev/ae50bf6e3ac8 New changeset 62d844d2bd07 by Serhiy Storchaka in branch 'default': Restored test_int

[issue8886] zipfile.ZipExtFile is a context manager, but that is not documented

2011-04-19 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: accepted -> fixed stage: patch review -> committed/rejected status: open -> closed versions: -Python 3.1 ___ Python tracker ___ _

[issue8886] zipfile.ZipExtFile is a context manager, but that is not documented

2011-04-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 83a426e969f5 by Brian Curtin in branch '2.7': Fix #8886. Use context managers throughout zipfile tests. http://hg.python.org/cpython/rev/83a426e969f5 -- nosy: +python-dev ___ Python tracker

[issue8886] zipfile.ZipExtFile is a context manager, but that is not documented

2010-11-17 Thread Brian Curtin
Brian Curtin added the comment: Fixed in r86506 for py3k. The maintenance branches recently had an RC in preparation for a release -- I'll backport once they go out. -- assignee: -> brian.curtin nosy: +brian.curtin resolution: -> accepted type: feature request -> resource usage versi

[issue8886] zipfile.ZipExtFile is a context manager, but that is not documented

2010-11-03 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue8886] zipfile.ZipExtFile is a context manager, but that is not documented

2010-06-03 Thread Erik Carstensen
Erik Carstensen added the comment: Patch that makes the zipfile test consistently use with statements to handle the return value of ZipFile.open(). -- keywords: +patch Added file: http://bugs.python.org/file17529/with-ZipExtFile-in-test.patch ___ Py

[issue8886] zipfile.ZipExtFile is a context manager, but that is not documented

2010-06-03 Thread Erik Carstensen
Erik Carstensen added the comment: Sorry, my mistake, ZipExtFile is indeed a context manager: I ran into the problem in 2.6, and checked whether it was fixed in 2.7; when quickly reading zipfile.py I saw that only ZipFile had context manager methods, I missed the BufferedIOBase inheritance. A