summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytes_construct_endian.py
blob: 1912f63a4d20aa77f481825714e12c436ef6ae12 (plain) (blame)
1
2
3
4
5
6
7
# test construction of bytes from different objects

from array import array

# arrays
print(bytes(array('h', [1, 2])))
print(bytes(array('I', [1, 2])))