[issue16408] FD leaks in zipfile

2012-11-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thank you for the patches. They looked fine, so I committed them. -- nosy: +pitrou resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue16408] FD leaks in zipfile

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset eba28506eed3 by Antoine Pitrou in branch '2.7': Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. http://hg.python.org/cpython/rev/eba28506eed3 -- ___ Python

[issue16408] FD leaks in zipfile

2012-11-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset d51d95c9ea81 by Antoine Pitrou in branch '3.2': Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. http://hg.python.org/cpython/rev/d51d95c9ea81 New changeset 27cb1a3d57c8 by Antoine Pitrou in branch '3.3

[issue16408] FD leaks in zipfile

2012-11-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file27902/zipfile_fd_leaks-2.7.patch ___ Python tracker ___ ___ Python-bugs-l

[issue16408] FD leaks in zipfile

2012-11-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file27901/zipfile_fd_leaks-3.2.patch ___ Python tracker ___ ___ Python-bugs-l

[issue16408] FD leaks in zipfile

2012-11-05 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch. In additional to leaks in testzip and ZipFile.open() I fixed possible leaks in other places. -- keywords: +patch stage: needs patch -> patch review title: zipfile.testzip() opens file but does not close it. -> FD leaks in zipfile Ad