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

# bytes, tuple, list
print(bytearray(b'123'))
print(bytearray((1, 2)))
print(bytearray([1, 2]))