2015-01-08 10:41:37 -05:00
|
|
|
# test construction of bytearray from array with float type
|
|
|
|
|
2017-04-02 17:17:43 -04:00
|
|
|
try:
|
2019-10-22 02:33:23 -04:00
|
|
|
from uarray import array
|
2017-04-02 17:17:43 -04:00
|
|
|
except ImportError:
|
2019-10-22 02:33:23 -04:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2015-01-08 10:41:37 -05:00
|
|
|
|
|
|
|
print(bytes(array("f", [1, 2.3])))
|