summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/array_construct_endian.py
blob: 1ea8230532ff9c416e425f0890b998f120764ad9 (plain) (blame)
1
2
3
4
5
6
# test construction of array.array from different objects

from array import array

# raw copy from bytes, bytearray
print(array('h', b'12'))