Files
Core2forAWS-MicroPython/tests/float/bytes_construct.py
T

13 lines
263 B
Python
Raw Normal View History

# test construction of bytearray from array with float type
try:
2019-10-22 17:33:23 +11:00
from uarray import array
except ImportError:
2019-10-22 17:33:23 +11:00
try:
from array import array
except ImportError:
print("SKIP")
raise SystemExit
print(bytes(array("f", [1, 2.3])))