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 socketpair
Recipients berker.peksag, christian.heimes, ezio.melotti, felipecruz, jcea, jcon, mrshu, serhiy.storchaka, socketpair, vstinner
Date 2016-03-07.10:54:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1457348064.78.0.91417666947.issue15948@psf.upfronthosting.co.za>
In-reply-to
Content
In a common case,

if (write(thread.fd, thread.header, thread.header_len) == -1)

should be replaced with

if (write(thread.fd, thread.header, thread.header_len) != thread.header_len)
History
Date User Action Args
2016-03-07 10:54:24socketpairsetrecipients: + socketpair, jcea, vstinner, christian.heimes, ezio.melotti, felipecruz, jcon, berker.peksag, serhiy.storchaka, mrshu
2016-03-07 10:54:24socketpairsetmessageid: <1457348064.78.0.91417666947.issue15948@psf.upfronthosting.co.za>
2016-03-07 10:54:24socketpairlinkissue15948 messages
2016-03-07 10:54:24socketpaircreate