python struct.error: ‘i’ format requires -2147483648
The communication protocol between processes uses pickling, and the pickled data is prefixed with the size of the pickled data. For your method, all arguments together are pickled as one object. You produced an object that when pickled is larger than fits in a i struct formatter (a four-byte signed integer), which breaks the assumptions … Read more