Version of Awkward Array
HEAD
Description and code to reproduce
For example:
import awkward as ak
array = ak.Array([1,2,3])
print(array)
print(ak.from_buffers(*ak.to_buffers(array, byteorder=">"), byteorder=">"))
incorrectly prints
[1, 2, 3]
[72057594037927936, 144115188075855872, 216172782113783808]
while it should be
The reason is that the byteorder kwarg is not considered in ak.from_buffers.