2017-03-08 18:07:19 -05:00
|
|
|
# test construction of bytes from different objects
|
|
|
|
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
|
2017-03-08 18:07:19 -05:00
|
|
|
|
|
|
|
# arrays
|
|
|
|
print(bytes(array('b', [1, 2])))
|
|
|
|
print(bytes(array('h', [0x101, 0x202])))
|