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

from array import array

# tuple, list, bytearray
print(bytes((1, 2)))
print(bytes([1, 2]))
print(bytes(bytearray(4)))

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