This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients asvetlov, hinxx, vstinner, yselivanov
Date 2019-02-13.15:27:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1550071645.04.0.724543378062.issue35988@roundup.psfhosted.org>
In-reply-to
Content
> 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
History
Date User Action Args
2019-02-13 15:27:25vstinnersetrecipients: + vstinner, asvetlov, yselivanov, hinxx
2019-02-13 15:27:25vstinnersetmessageid: <1550071645.04.0.724543378062.issue35988@roundup.psfhosted.org>
2019-02-13 15:27:25vstinnerlinkissue35988 messages
2019-02-13 15:27:25vstinnercreate