tests: Split byteorder-dependent tests to *_endian.py's.

This commit is contained in:
Paul Sokolovsky
2015-08-30 00:30:28 +03:00
parent 0a8b5d160b
commit 58d9b10d70
8 changed files with 31 additions and 6 deletions

View File

@@ -9,5 +9,4 @@ print(bytearray([1, 2]))
# arrays
print(bytearray(array('b', [1, 2])))
print(bytearray(array('h', [1, 2])))
print(bytearray(array('I', [1, 2])))
print(bytearray(array('h', [0x101, 0x202])))