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

from array import array

print(array('f', array('h', [1, 2])))
print(array('d', array('f', [1, 2])))