summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytearray_construct.py
blob: 0a7097d55aefdeef50e4e2d5a01fe127def4f6c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# test construction of bytearray from different objects

from array import array

# bytes, tuple, list
print(bytearray(b'123'))
print(bytearray((1, 2)))
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('f', [1, 2.3])))