2015-08-29 22:30:28 +01:00
|
|
|
# test construction of array.array from different objects
|
|
|
|
|
2017-01-06 22:13:40 +00:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-10 18:03:01 +01:00
|
|
|
raise SystemExit
|
2015-08-29 22:30:28 +01:00
|
|
|
|
|
|
|
# raw copy from bytes, bytearray
|
|
|
|
print(array('h', b'12'))
|