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