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

from array import array

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