New submission from Benedikt Bieringer <2xb.cod...@wwu.de>:
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. ---------- components: Library (Lib) messages: 348218 nosy: 2xB priority: normal severity: normal status: open title: multiprocessing numpy.ndarray not transmitted properly type: behavior versions: Python 3.6 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue37637> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com