[issue35988] Python interpreter segfault

STINNER Victor report at bugs.python.org
Wed Feb 13 10:27:25 EST 2019


STINNER Victor <vstinner at redhat.com> added the comment:

> Program received signal SIGPIPE, Broken pipe.

SIGPIPE is not a bug, it's a deliberate signal to notice something to your application. You have to ignore SIGPIPE in gdb:

(gdb) handle SIGPIPE nostop noprint
Signal        Stop	Print	Pass to program	Description
SIGPIPE       No	No	Yes		Broken pipe

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue35988>
_______________________________________


More information about the Python-bugs-list mailing list