[issue20243] ReadError when open a tarfile for writing

2014-01-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 61b6accbca9f by Serhiy Storchaka in branch '2.7': Issue #20243: TarFile no longer raise ReadError when opened in write mode. http://hg.python.org/cpython/rev/61b6accbca9f New changeset 2f3b47b63f91 by Serhiy Storchaka in branch '3.3': Issue #20243:

[issue20243] ReadError when open a tarfile for writing

2014-01-18 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20243

[issue20243] ReadError when open a tarfile for writing

2014-01-13 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: ReadError can be raised when open a tarfile in write mode (e.g. 'w:gz'). Here is a patch wish a test. In additional it rewrites the handling errors in gzopen() which is too complicated now. This complication is possible the cause of bugs #11513 and

[issue20243] ReadError when open a tarfile for writing

2014-01-13 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Incomplete gzip output with tarfile.open(fileobj=..., mode=w:gz) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20243 ___