Adding default signal handler for SIGPIPE.
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.