[issue13407] tarfile doesn't support multistream bzipped tar files

2018-10-08 Thread Brian Curtin
Change by Brian Curtin : -- assignee: docs@python -> brian.curtin resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue13407] tarfile doesn't support multistream bzipped tar files

2018-09-29 Thread Andrés Delfino
Change by Andrés Delfino : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue13407] tarfile doesn't support multistream bzipped tar files

2018-09-29 Thread Andrés Delfino
Andrés Delfino added the comment: I believe this can be closed. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue13407] tarfile doesn't support multistream bzipped tar files

2018-09-29 Thread Brian Curtin
Brian Curtin added the comment: New changeset 8d3b0f49021e6cd25030a1eb979218cfceb44061 by Brian Curtin (Andrés Delfino) in branch '2.7': [2.7] bpo-13407: Mention that bz2/tarfile doesn't support multi-stream bzip2 files (GH-8428) https://github.com/python/cpython/commit/8d3b0f49021e6cd25030a1

[issue13407] tarfile doesn't support multistream bzipped tar files

2018-07-23 Thread Andrés Delfino
Change by Andrés Delfino : -- keywords: +patch pull_requests: +7954 stage: needs patch -> patch review ___ Python tracker ___ ___ Pyt

[issue13407] tarfile doesn't support multistream bzipped tar files

2018-07-23 Thread Andrés Delfino
Andrés Delfino added the comment: Sorry, you are right. I'll try on 2.7 when I get home, and make a PR if needed. -- ___ Python tracker ___

[issue13407] tarfile doesn't support multistream bzipped tar files

2018-07-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This is a 2.7 only documentation issue. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue13407] tarfile doesn't support multistream bzipped tar files

2018-07-23 Thread Andrés Delfino
Andrés Delfino added the comment: This is no longer reproducible under 3.7.0. >>> import tarfile >>> tf = tarfile.open("kdelibs-4.7.3.tar.bz2", "r") >>> print(len(tf.getnames())) 9237 Not sure I should be the one closing this. -- nosy: +adelfino __

[issue13407] tarfile doesn't support multistream bzipped tar files

2015-02-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The tarfile module documentation needs a note similar to issue1625 which would warn about the lack of supporting some files and suggest a workaround. -- assignee: -> docs@python components: +Documentation nosy: +docs@python, nadeem.vawda, serhiy.stor