2017-03-08 18:07:19 -05:00
|
|
|
# test bytes + other
|
|
|
|
try:
|
2023-08-22 11:15:46 -04:00
|
|
|
import array
|
2017-03-08 18:07:19 -05:00
|
|
|
except ImportError:
|
2023-08-22 11:15:46 -04:00
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
2017-03-08 18:07:19 -05:00
|
|
|
|
|
|
|
# should be byteorder-neutral
|
|
|
|
print(b"123" + array.array('h', [0x1515]))
|
|
|
|
|
|
|
|
print(b"\x01\x02" + array.array('b', [1, 2]))
|