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

from array import array

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