STINNER Victor <vstin...@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 <rep...@bugs.python.org>
<https://bugs.python.org/issue35988>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to