2015-01-08 15:41:37 +00:00
|
|
|
# test construction of bytearray from array with float type
|
|
|
|
|
2017-04-02 22:17:43 +01:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
import sys
|
|
|
|
print("SKIP")
|
|
|
|
sys.exit()
|
2015-01-08 15:41:37 +00:00
|
|
|
|
|
|
|
print(bytes(array('f', [1, 2.3])))
|