Message138766
| 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:03 | vstinner | set | recipients:
+ vstinner, pitrou, neologix |
| 2011年06月20日 23:37:03 | vstinner | set | messageid: <1308613023.86.0.172607661613.issue12364@psf.upfronthosting.co.za> |
| 2011年06月20日 23:37:03 | vstinner | link | issue12364 messages |
| 2011年06月20日 23:37:03 | vstinner | create |
|