blob: 7a887db2319734ac7449632f0f9449a8f6b0041c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# test bytes + other
print(b"123" + b"456")
print(b"123" + bytearray(2))
import array
# should be byteorder-neutral
print(b"123" + array.array('h', [0x1515]))
print(b"\x01\x02" + array.array('b', [1, 2]))
|