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 neologix
Recipients neologix, vstinner
Date 2011-09-16.18:40:53
SpamBayes Score 1.4226835e-05
Marked as misclassified No
Message-id <1316198455.11.0.87432837805.issue12996@psf.upfronthosting.co.za>
In-reply-to
Content
Since the rewrite in pure Python of multiprocessing.Connection (issue #11743), multiprocessing.Connection sends and receives the length of the data (used as header) in host byte order.
This will break if the connection's endpoints are on machine with different endianness.
Patch attached (it also removes an unnecessary computation of the length of the data being sent).
History
Date User Action Args
2011-09-16 18:40:55neologixsetrecipients: + neologix, vstinner
2011-09-16 18:40:55neologixsetmessageid: <1316198455.11.0.87432837805.issue12996@psf.upfronthosting.co.za>
2011-09-16 18:40:54neologixlinkissue12996 messages
2011-09-16 18:40:54neologixcreate