2015-08-29 17:30:28 -04:00
|
|
|
# test construction of bytearray from different objects
|
2017-03-08 18:07:19 -05:00
|
|
|
try:
|
2022-08-18 02:57:45 -04:00
|
|
|
from array import array
|
2017-03-08 18:07:19 -05:00
|
|
|
except ImportError:
|
2022-08-18 02:57:45 -04:00
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2015-08-29 17:30:28 -04:00
|
|
|
|
|
|
|
# arrays
|
|
|
|
print(bytearray(array('h', [1, 2])))
|
|
|
|
print(bytearray(array('I', [1, 2])))
|