2015-08-30 00:30:28 +03:00
|
|
|
# test construction of array.array from different objects
|
|
|
|
|
2017-01-07 01:13:40 +03:00
|
|
|
try:
|
2021-04-23 12:26:42 -07:00
|
|
|
from uarray import array
|
2017-01-07 01:13:40 +03:00
|
|
|
except ImportError:
|
2021-04-23 12:26:42 -07:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2015-08-30 00:30:28 +03:00
|
|
|
|
|
|
|
# raw copy from bytes, bytearray
|
|
|
|
print(array('h', b'12'))
|