[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2013-11-10 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Alright, I'm going to close this issue. Please open a new bug for Python 2.7. -- resolution: -> fixed status: open -> closed ___ Python tracker _

[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2013-11-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I suppose that 2.7 may leak GzipFile in case of some errors, but this is another issue. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2013-11-10 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Should this issue still remain open? The original report described a chained exception, which obviously doesn't happen in 2.7 (nor with Georg's changeset, in 3.2, 3.3, or 3.4). RDM's message implies there still may still be bugs lurking here in 2.7, but OTO

[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2011-12-02 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> needs patch type: -> behavior versions: +Python 2.7 -Python 3.2, Python 3.3 ___ Python tracker ___ __

[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2011-08-13 Thread Georg Brandl
Georg Brandl added the comment: Fixed in 3.2/default. 2.7 has even more primitive error handling; should the gzopen() be adapted to the 3.x case? -- nosy: +georg.brandl ___ Python tracker ___

[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2011-08-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 843cd43206b4 by Georg Brandl in branch '3.2': Fix #11513: wrong exception handling for the case that GzipFile itself raises an IOError. http://hg.python.org/cpython/rev/843cd43206b4 -- nosy: +python-dev ___

[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2011-04-22 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Commented on the patch. I'll be happy to land this for Evan. -- assignee: -> barry nosy: +barry ___ Python tracker ___ _

[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2011-03-18 Thread Evan Dandrea
Changes by Evan Dandrea : Removed file: http://bugs.python.org/file21223/tarfile-fix-multiple-exception-on-enoent.patch ___ Python tracker ___ __

[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2011-03-18 Thread Evan Dandrea
Evan Dandrea added the comment: David, Thanks for the pointers. I've updated the patch hopefully adequately addressing your concerns. -- components: +Interpreter Core -Library (Lib) type: behavior -> Added file: http://bugs.python.org/file21277/tarfile-fix-multiple-exception-on-enoe

[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2011-03-16 Thread R. David Murray
R. David Murray added the comment: Note that the code in question was changed to the form with the bugs in 3.2, so this fix does not need to be backported to 3.1. The test could be, though. -- components: +Library (Lib) -Interpreter Core title: Infinite recursion around raising an exc