Skip to content

Adding default signal handler for SIGPIPE.

Karolos Potamianos requested to merge karolos/eformat:master into master

When using dump-eformat-in-data.py with pipes, the process on the other side of the pipe might be closed, yielding the (incorrect) displaying of the following error:

IOError: [Errno 32] Broken pipe

The solution is to add a handler to catch SIGPIPE, which is expected in this case.

Merge request reports