summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytes_add_bytearray.py
blob: 4998800b512f53f499c238ad9532d26f30b11116 (plain) (blame)
1
2
3
4
5
# test bytes + bytearray

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

print(b"" + bytearray(1)) # LHS is empty but can't be optimised