Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
Windows uses 4-byte integers in Numpy arrays made from Python ints
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Jun 17, 2018
1 parent d399d6c commit 6dcee53
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/test_jagged.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,14 @@ def test_bytejagged_offsets(self):
def test_bytejagged_iterable(self):
a = ByteJaggedArray.fromiterable([[1, 2, 3], [], [4, 5]])
self.assertEqual([x.tolist() for x in a], [[1, 2, 3], [], [4, 5]])
self.assertEqual(a.offsets.tolist(), [0, 24, 24, 40])
self.assertEqual(a.content.tobytes(), b"\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00")
if a.dtype.itemsize == 8:
self.assertEqual(a.offsets.tolist(), [0, 24, 24, 40])
self.assertEqual(a.content.tobytes(), b"\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00")
elif a.dtype.itemsize == 4:
self.assertEqual(a.offsets.tolist(), [0, 12, 12, 20])
self.assertEqual(a.content.tobytes(), b"\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x05\x00\x00\x00")
else:
raise AssertionError(a.dtype.itemsize)

def test_bytejagged_get(self):
a = ByteJaggedArray([5, 17, 19], [17, 17, 27], b"\xff\x00\x00\x00\x00\x01\x00\x00\x00\x02\x00\x00\x00\x03\x00\x00\x00\xff\xff\x04\x00\x00\x00\x05\x00\x00\x00\xff", numpy.int32)
Expand Down

0 comments on commit 6dcee53

Please sign in to comment.