summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/bytearray_construct.py
blob: f7292663511c82d1520e313dbfc23c098d684d1d (plain) (blame)
1
2
3
4
5
# test construction of bytearray from array with float type

from array import array

print(bytearray(array('f', [1, 2.3])))