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 2xB
Recipients 2xB
Date 2019-07-20.18:11:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1563646298.52.0.224679939244.issue37637@roundup.psfhosted.org>
In-reply-to
Content
The following code demonstrates the issue:

import numpy as np
from multiprocessing import Pipe
p1, p2 = Pipe()
arr = np.zeros((3, 5, 6), dtype=np.uint8)
p2.send_bytes(arr)
pm = p1.recv_bytes()
print(pm)

Only 3 bytes are transmitted for this array which obviously consists of more than 3 bytes.
History
Date User Action Args
2019-07-20 18:11:382xBsetrecipients: + 2xB
2019-07-20 18:11:382xBsetmessageid: <1563646298.52.0.224679939244.issue37637@roundup.psfhosted.org>
2019-07-20 18:11:382xBlinkissue37637 messages
2019-07-20 18:11:382xBcreate