summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytes_add.py
blob: 5432d01e580f8f774162e12c46297d0af7188e10 (plain) (blame)
1
2
3
4
# test bytes + other

print(b"123" + b"456")
print(b"123" + bytearray(2))