[issue39851] tarfile: Exception ignored in (... stdout ...) BrokenPipeError

2020-04-08 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch Added file: https://bugs.python.org/file49046/bpo-39851.patch ___ Python tracker ___

[issue39851] tarfile: Exception ignored in (... stdout ...) BrokenPipeError

2020-04-08 Thread Dong-hee Na
Dong-hee Na added the comment: Victor, I found a way how to deal with it. The submitted file will show how it can be handled. If you remove the try: finally statement. You can see the same stdout which occurred from tarfile But I'd like to listen to your opinion before submitting the patch.

[issue39851] tarfile: Exception ignored in (... stdout ...) BrokenPipeError

2020-03-04 Thread Dong-hee Na
Dong-hee Na added the comment: I will take look at this issue :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue39851] tarfile: Exception ignored in (... stdout ...) BrokenPipeError

2020-03-04 Thread Erlend Egeberg Aasland
Change by Erlend Egeberg Aasland : -- nosy: +erlendaasland ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39851] tarfile: Exception ignored in (... stdout ...) BrokenPipeError

2020-03-04 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +ethan.furman ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue39851] tarfile: Exception ignored in (... stdout ...) BrokenPipeError

2020-03-04 Thread STINNER Victor
New submission from STINNER Victor : When a stdout pipe is closed on the consumer side, Python logs an exception at exit: $ ./python -m tarfile -l archive.tar|true Exception ignored in: <_io.TextIOWrapper name='' mode='w' encoding='utf-8'> BrokenPipeError: [Errno 32] Broken pipe I tried to