blob: 990d7b1ea039b63841c62fdf14d6a078766ff2a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# test construction of array.array from different objects
try:
from array import array
except ImportError:
print("SKIP")
raise SystemExit
# raw copy from bytes, bytearray
print(array('h', b'12'))
|