v2.3.1
In this version, the indifference to PIPEFAIL is intensified.
- version 2.3.0
$ yes aho | opy '[F1]' | head
aho
aho
aho
aho
aho
aho
aho
aho
aho
aho
Exception ignored in: <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'>
BrokenPipeError: [Errno 32] Broken pipe
$ echo ${PIPESTATUS[@]}
141 120 0
- this version
$ yes aho | opy '[F1]' | head
aho
aho
aho
aho
aho
aho
aho
aho
aho
aho
$ echo ${PIPESTATUS[@]}
141 0 0