[issue39065] OSError in TarFile.getmembers()

2022-01-19 Thread Irit Katriel
Irit Katriel added the comment: Following Issue6584 it raises BadGzipFile. -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-

[issue39065] OSError in TarFile.getmembers()

2019-12-16 Thread jvoisin
New submission from jvoisin : The attached file produces the following stacktrace when opened via `tarfile.open` and iterated with `TarFile.getmembers`, on Python 3.7.5rc1: ``` $ cat tarrepro.py import tarfile import sys with tarfile.open(sys.argv[1]) as t: for member in t.getmembers():