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 neologix, pitrou, vstinner
Date 2011-06-20.23:37:03
SpamBayes Score 2.4560793e-05
Marked as misclassified No
Message-id <1308613023.86.0.172607661613.issue12364@psf.upfronthosting.co.za>
In-reply-to
Content
Connection._send_bytes() has a comment about broken pipes:

    def _send_bytes(self, buf):
        # For wire compatibility with 3.2 and lower
        n = len(buf)
        self._send(struct.pack("=i", len(buf)))
        # The condition is necessary to avoid "broken pipe" errors
        # when sending a 0-length buffer if the other end closed the pipe.
        if n > 0:
            self._send(buf)

But the OSError(32, "Broken pipe") occurs on sending the buffer size (a chunk of 4 bytes: self._send(struct.pack("=i", len(buf)))), not on sending the buffer content.

See also maybe the (closed) issue #9205: Parent process hanging in multiprocessing if children terminate unexpectedly
History
Date User Action Args
2011-06-20 23:37:03vstinnersetrecipients: + vstinner, pitrou, neologix
2011-06-20 23:37:03vstinnersetmessageid: <1308613023.86.0.172607661613.issue12364@psf.upfronthosting.co.za>
2011-06-20 23:37:03vstinnerlinkissue12364 messages
2011-06-20 23:37:03vstinnercreate